Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-01-02 | correct fram size. | Artur Grabowski | |
pointed out by marc@ | |||
2002-01-02 | label abort() from inside library as ILLEGAL | Theo de Raadt | |
2002-01-02 | KNF | Theo de Raadt | |
2002-01-02 | more pid_t use | Theo de Raadt | |
2002-01-02 | fp and pc are 64 bit. | Artur Grabowski | |
And just to make things more fun -1, is not a misaligned stack on sparc64. | |||
2002-01-02 | fp and pc are 64 bit. | Artur Grabowski | |
2002-01-02 | Grammar and format fixes. | Aaron Campbell | |
2002-01-02 | fpathconf(2) returns long. | Federico G. Schwindt | |
2002-01-02 | Remove extra reference to poll.2. Spotted by form@. | Mike Pechkin | |
millert@ ok; | |||
2002-01-02 | pids should be pid_t, not int | Mike Pechkin | |
2002-01-02 | Move the const qualifier to the right place. deraadt@ ok | Thomas Nordin | |
2002-01-02 | Add missing .Os. deraadt@ ok | Thomas Nordin | |
2001-12-31 | More changes from FreeBSD, including: | Federico G. Schwindt | |
o Only poll file descriptors when needed. o Change the way timing is achieved, counting scheduling ticks instead of calculating the elapsed time via gettimeofday(). o Prevent an overflow when polling. o Use curthread instead of _thread_run. o Remove extra spaces; indent. | |||
2001-12-30 | Rename libusb to libusbhid, a better name, per NetBSD | Peter Valchev | |
2001-12-30 | call pthread_sigmask() instead of having the code twice. | Federico G. Schwindt | |
2001-12-29 | Two functions can return errors here, not just one. | Miod Vallat | |
2001-12-26 | no way for this to be 'shared only', duh | Peter Valchev | |
2001-12-20 | fix to match documented behaviour. RAND_file_name must return a pointer to | Bob Beck | |
buf, not something else. | |||
2001-12-20 | From FreeBSD: | Federico G. Schwindt | |
When cancelling a thread while in a join operation, do not detach the target thread of the join operation. This allows the cancelled thread to detach the target thread in its cancellation handler. | |||
2001-12-20 | sync with freebsd. | Federico G. Schwindt | |
2001-12-19 | More sync. | Federico G. Schwindt | |
2001-12-18 | sigh, do it right. | Federico G. Schwindt | |
2001-12-18 | Fix func decl. in comment. | Federico G. Schwindt | |
2001-12-18 | Allow the scheduler to return to the signal handler and the signal | Marco S Hyman | |
handler to return instead of calling sigreturn directly. This works around an apparent bug in sparc sigreturn handling. ok fgs@ and noone else has bitched | |||
2001-12-18 | Software invoked traps should use the ST_ versions of the trap number | Marco S Hyman | |
with the high bit of the trap number stripped per the V8 arch manual. The stack alignment code was broken. It tried to align to a 32 byte boundary (only 8 byte boundary is required) by first adding 15 bytes then masking. It could have aligned down. The minimum frame size was twice the size needed by allocating 8 bytes per saved value instead of the needed 4. This bug offset the bug in the stack alignment code. | |||
2001-12-17 | fix memory leak associated with compiled BPF program, sync'd from ↵ | Dug Song | |
tcpdump.org. ok itojun@ | |||
2001-12-15 | Document SIGTTIN and SIGTTOU now that we deal with them too. | Todd C. Miller | |
2001-12-15 | Catch SIGTTIN and SIGTTOU too and treat them like SIGTSTP. | Todd C. Miller | |
2001-12-13 | atoi->strtoul | Bob Beck | |
2001-12-13 | Reorder new includes. art@ says ok. | Hugh Graham | |
2001-12-11 | FQDN subjectAltName in certs, used in isakmpd(8) examples. beck@ ok. | Hakan Olsson | |
2001-12-11 | More sync with freebsd code; join related code this time. | Federico G. Schwindt | |
2001-12-08 | when strerror() has an Unknown error, also set EINVAL | Theo de Raadt | |
2001-12-08 | sync with freebsd. | Federico G. Schwindt | |
2001-12-08 | Partially sync with FreeBSD; mostly pthread_cancel(3) related changes. | Federico G. Schwindt | |
make includes is needed in case you want to play. | |||
2001-12-08 | save the pid as well, and only do the atexit in the same pid | Theo de Raadt | |
2001-12-07 | Add ERRORS and STANDARDS sections | Todd C. Miller | |
2001-12-07 | o Turn off ECHONL in addition to ECHO | Todd C. Miller | |
o Return NULL of read(2) returns -1 o Add ERRORS and STANDARDS sections | |||
2001-12-07 | From XPG4.2: read(2) can return EIO if the process is a member of | Todd C. Miller | |
a background process attempting to read from its controlling terminal, the process is ignoring or blocking the SIGTTIN signal or the process group is orphaned. Verified against reality... | |||
2001-12-07 | missing comma | Todd C. Miller | |
2001-12-07 | Instead of restoring the tty mode, restoring the signal handler, | Todd C. Miller | |
unblocking the signal and redelivering it just make all our signal handler interupt system calls and set a flag. We can just deliver the signal at the end right before we would normally return. This solves the SIG_IGN problem nicely and causes readpassphrase() to return when someone hits ^C even if the handler is SIG_IGN. | |||
2001-12-07 | Document signal handling in readpassphrase(3) | Todd C. Miller | |
2001-12-07 | Add CAVEATS section pointing out the dangers of closing fds <= 2 | Todd C. Miller | |
as found by Markus. | |||
2001-12-07 | o point pthread_setcancel(type|state) manpages where they belong. | Federico G. Schwindt | |
o remove functions from pthread_cancel(3). | |||
2001-12-07 | Check for keyfile == NULL in skey_unlock() | Todd C. Miller | |
2001-12-06 | Use TCSAFLUSH not TCSANOW. I was only using TCSANOW during debugging... | Todd C. Miller | |
2001-12-06 | Fix a long standing annoyance with getpass/readpassphrase. Instead of | Todd C. Miller | |
blocking SIGINT and SIGTSTP, catch them (along with SIGHUP, SIGQUIT, SIGTERM). We restore the tty mode as needed and then restore the original signal handler and resend the signal. For SIGTSTP, upon return from suspend the user is re-prompted for the passphrase. | |||
2001-12-06 | mark more signals that I cannot fix | Theo de Raadt | |
2001-12-06 | alloca cannot check if the allocation is valid. mention the consequences; ↵ | Theo de Raadt | |
millert ok | |||
2001-12-06 | A FILE * is not a file name, dammit. | Todd C. Miller | |