| Commit message (Expand) | Author | Age | Files | Lines |
| * | Portability fix: use unsigned cast to guaranteed positive part of expression | Andrey A. Chernov | 2001-09-04 | 2 | -2/+2 |
| * | Remove rcsids and unneded include | Andrey A. Chernov | 2001-09-04 | 6 | -34/+12 |
| * | 'acc' is not initialized in one hypotetical case, fix it | Andrey A. Chernov | 2001-09-04 | 4 | -8/+8 |
| * | Locale *is* used in strto*l*(), at least for isspace(), so remove | Andrey A. Chernov | 2001-09-04 | 8 | -58/+105 |
| * | Implement _setjmp()/_longjmp(). | Doug Rabson | 2001-09-04 | 1 | -118/+338 |
| * | This does not describe sched_{get,set}scheduler. | Dima Dorfman | 2001-09-03 | 1 | -2/+3 |
| * | Don't capitalize jail(2) in the middle of a sentence. | Dima Dorfman | 2001-09-03 | 1 | -1/+1 |
| * | PT_STEP in ptrace(2) man page is described as 'addr and data fields | Murray Stokely | 2001-09-03 | 1 | -3/+3 |
| * | When __SOPT is cleared, clear __SOFF too. | Andrey A. Chernov | 2001-09-03 | 1 | -1/+1 |
| * | Re-arrange my funopen(3) fix to minimize differences with original stdio code, | Andrey A. Chernov | 2001-09-03 | 6 | -83/+91 |
| * | o Sync up prototypes for cap_size() and cap_copy_ext() with | Robert Watson | 2001-09-02 | 1 | -2/+2 |
| * | Internal seeks are overoptimized. They should remember fp->_offset only for | Andrey A. Chernov | 2001-09-02 | 2 | -3/+1 |
| * | Fix bug in off_t overflow checking: if fp->_offset overflows, just remove | Andrey A. Chernov | 2001-09-02 | 1 | -5/+3 |
| * | Remove MLINKS seek.2 to lseek.2, we don't have seek.2 syscall | Andrey A. Chernov | 2001-09-02 | 1 | -1/+0 |
| * | Typo seek(2) -> lseek(2) | Andrey A. Chernov | 2001-09-02 | 1 | -1/+1 |
| * | Move all stdio internal flags processing and setting out of __sread(), | Andrey A. Chernov | 2001-09-02 | 9 | -55/+89 |
| * | Another punctuation fix (missing comma ending preposition). | Chris Costello | 2001-09-01 | 1 | -1/+1 |
| * | o Mention the fact that specifying a fileid of 0 searches all loaded | Chris Costello | 2001-09-01 | 1 | -1/+4 |
| * | Save errno before function call and restore it on success (because many | Andrey A. Chernov | 2001-09-01 | 2 | -2/+11 |
| * | Remove even more unneded checks, original code can't overflows in that place | Andrey A. Chernov | 2001-09-01 | 1 | -5/+1 |
| * | Remove two checks unneeded now (can't happens) | Andrey A. Chernov | 2001-09-01 | 1 | -4/+0 |
| * | Make fseek(... SEEK_CUR) fails if current file-position is unspecified. | Andrey A. Chernov | 2001-09-01 | 2 | -8/+8 |
| * | Note that prev. commit addition is for ftell/ftello | Andrey A. Chernov | 2001-09-01 | 1 | -2/+6 |
| * | Describe ESPIPE as result of unspecified file-position indicator value. | Andrey A. Chernov | 2001-09-01 | 1 | -2/+7 |
| * | Describe file-position behaviour from POSIX | Andrey A. Chernov | 2001-09-01 | 1 | -0/+5 |
| * | Strict in the POSIX sence, if file position is unspecified after ungetc() at | Andrey A. Chernov | 2001-09-01 | 1 | -6/+4 |
| * | If lseek to wrong value sucessfully happens despite all pre-checks, set __SERR | Andrey A. Chernov | 2001-09-01 | 2 | -1/+4 |
| * | If position is underflowed, don't try to hide that fact by recovery, just | Andrey A. Chernov | 2001-09-01 | 1 | -17/+7 |
| * | Back out disabling ungetc() at 0, use different solution: | Andrey A. Chernov | 2001-09-01 | 5 | -34/+48 |
| * | o Attach cap_cmp.c and cap_copy.c to the build. | Robert Watson | 2001-09-01 | 1 | -1/+6 |
| * | Describe EOVERFLOW I implement per POSIX. | Andrey A. Chernov | 2001-08-31 | 1 | -9/+17 |
| * | Add originally missing __sinit() call. | Andrey A. Chernov | 2001-08-31 | 1 | -0/+4 |
| * | Simplify offset underflow checks even more | Andrey A. Chernov | 2001-08-31 | 1 | -12/+2 |
| * | Describe that we disallow ungetc at offset 0 now. | Andrey A. Chernov | 2001-08-31 | 1 | -1/+4 |
| * | Disallow ungetc at offset 0 (to prevent negative offset happens), so simplify | Andrey A. Chernov | 2001-08-31 | 2 | -22/+15 |
| * | Drop buffer first, _then_ ask for real position | Andrey A. Chernov | 2001-08-31 | 1 | -4/+4 |
| * | The same big piece of ftell code repeated in 3 places. Simplify things moving | Andrey A. Chernov | 2001-08-31 | 3 | -94/+30 |
| * | If file offset is smaller than internal buffer character left count, just drop | Andrey A. Chernov | 2001-08-31 | 2 | -16/+30 |
| * | Initialize _offset to 0 in fopen(), it helps to optimize fseek/ftell | Andrey A. Chernov | 2001-08-31 | 1 | -0/+2 |
| * | Detect fp->_offset overflow on read | Andrey A. Chernov | 2001-08-31 | 1 | -9/+23 |
| * | Add manpage for inet_net_ntop(3) and inet_net_pton(3). | Ruslan Ermilov | 2001-08-31 | 3 | -1/+162 |
| * | Use ``.Rv -std'' wherever possible. | Ruslan Ermilov | 2001-08-31 | 41 | -216/+69 |
| * | o Use .Fx to refer to FreeBSD | Robert Watson | 2001-08-31 | 1 | -1/+2 |
| * | o Remove definition of CAP_MAX_BUF_LEN since it is defined in | Robert Watson | 2001-08-31 | 1 | -1/+4 |
| * | Introduce implementations of POSIX.1e non-portable form capability | Robert Watson | 2001-08-31 | 4 | -0/+366 |
| * | Add Xref to make.conf(5). | Alexander Langer | 2001-08-30 | 1 | -1/+2 |
| * | Try to discard some ungetc data in saved internal buffer checks too, | Andrey A. Chernov | 2001-08-30 | 2 | -7/+25 |
| * | goto dumb; if can't obtain curoff for whence != SEEK_CUR cases, as supposed | Andrey A. Chernov | 2001-08-30 | 1 | -8/+4 |
| * | Add more EOVERFLOW checks. | Andrey A. Chernov | 2001-08-30 | 2 | -31/+94 |
| * | o Remove some GCCisms in src/powerpc/include/endian.h. | Mike Barcroft | 2001-08-30 | 1 | -9/+14 |