Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing #include of <sys.types.h> | phk | 1998-08-15 | 1 | -0/+1 |
| | |||||
* | I have added the support for BIG5 encoding into libc/libxpg4/mklocale. | phk | 1998-08-15 | 3 | -5/+127 |
| | | | | | | | | | | | the diff is attached below. This is done on the 3.0 source-tree. I have test this on 2.2-stable before, but I don't have a 3.0 machine right now. This patch is mainly to make libc support BIG5 encoding, thus add zh_TW.BIG5 locale to 3.0. Submitted by: Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw> | ||||
* | If using FreeBSD syscalls, handle the syscalls that don't require | jb | 1998-08-08 | 1 | -1/+11 |
| | | | | default asm code the same way as on i386. | ||||
* | Include FreeBSD's syscall.h if not using NetBSD syscalls. | jb | 1998-08-08 | 1 | -2/+5 |
| | |||||
* | Allow for the fact that NetBSD syscalls are no longer the default. Call | jb | 1998-08-08 | 1 | -0/+4 |
| | | | | sigaltstack by default if using FreeBSD syscalls. | ||||
* | Make NetBSD compatibility conditional on NETBSD_SYSCALLS being defined. | jb | 1998-08-08 | 1 | -1/+3 |
| | | | | This is no longer the default. | ||||
* | References to NetBSD syscalls changed to just a comment about what to | jb | 1998-08-08 | 1 | -6/+7 |
| | | | | | | add to /etc/make.conf to use FreeBSD's libc with a NetBSD/Alpha kernel. From now on, FreeBSD/Alpha is just FreeBSD. | ||||
* | Fixed bitrot in prototypes in synopsis. | bde | 1998-08-03 | 1 | -5/+5 |
| | |||||
* | Fixed missing header in synopsis. | bde | 1998-08-03 | 1 | -1/+2 |
| | |||||
* | isnetworktty -> isnettty. ttyent.h has already gone through 3 | bde | 1998-08-03 | 2 | -6/+6 |
| | | | | | | revisions to match the confusing spelling in getttyent.c (1 to break it to match the man page and 1 in each of 2 branches to fix it). This function seems to be orphaned and unused. | ||||
* | Fixed printf format errors. | bde | 1998-08-02 | 1 | -1/+1 |
| | |||||
* | Fixed disordering in previous commit. | bde | 1998-07-29 | 2 | -8/+8 |
| | |||||
* | Add missing period. We don't allow maternity leaves. | hoek | 1998-07-29 | 1 | -2/+2 |
| | |||||
* | u_int --> unsigned int, remove (now unneeded) <sys/types.h> | jlemon | 1998-07-28 | 3 | -15/+13 |
| | |||||
* | oops, forgot to do ``cvs add'' first. | jlemon | 1998-07-28 | 6 | -0/+417 |
| | |||||
* | Add wrappers for i386_*_ioperm, i386_vm86 so userland code does | jlemon | 1998-07-28 | 3 | -8/+13 |
| | | | | | not have to call sysarch() directly. Added man pages for above, as well as sysarch() | ||||
* | Provide meaningful errno value on error return | ache | 1998-07-14 | 1 | -5/+17 |
| | |||||
* | Changed to the C9x draft spelling of the (unsigned) integral type | bde | 1998-07-14 | 1 | -12/+12 |
| | | | | | | | | suitable for holding object pointers (ptrint_t -> uintptr_t). Added corresponding signed type (intptr_t). Changed/added corresponding non-C9x types for function pointers to match. Don't use nonstandard types to implement these types, and don't comment on them in <machine/types.h>. | ||||
* | Oops, fptrint_t still needs to be declared in <machine/profile.h> in the | bde | 1998-07-10 | 1 | -9/+1 |
| | | | | | !KERNEL case. The kludge to get it declared in libc/gmon/mcount.c wasn't sufficient because fptrint_t is used in <sys/gmon.h>. | ||||
* | Added a kernel-only typedef (ptrint_t) giving an integral type that is | bde | 1998-07-10 | 1 | -2/+11 |
| | | | | | | | | | | least unsuitable for holding an object pointer. This should have been used to fix warnings about casts between pointers and ints on alphas. Moved corresponding existing general typedef (fptrint_t) for function pointers from the i386 <machine/profile.h> to a kernel-only typedef in <machine/types.h>. Kludged libc/gmon/mcount.c so that it can still see this typedef. | ||||
* | Correct wording on range of addresses examined by `msync(2)'. | jkoshy | 1998-07-09 | 1 | -2/+2 |
| | | | | PR: 7180 | ||||
* | Add lockf(). | dt | 1998-07-08 | 1 | -3/+3 |
| | |||||
* | Make this look more FreeBSDish. | dt | 1998-07-08 | 1 | -8/+2 |
| | |||||
* | This commit was generated by cvs2svn to compensate for changes in r37510, | dt | 1998-07-08 | 2 | -0/+345 |
|\ | | | | | | | which included commits to RCS files with non-trunk default branches. | ||||
| * | An implementation of lockf() function call. | dt | 1998-07-08 | 2 | -0/+345 |
| | | | | | | | | Obtained from: NetBSD (author: Klaus Klein) | ||||
* | | Replace my original asprintf() and vasprintf() hacks with something | peter | 1998-07-08 | 4 | -142/+99 |
| | | | | | | | | | | | | | | | | more cleanly integrated with stdio. This should be faster and cleaner since it doesn't memcpy() the data into a seperate buffer. This lets stdio allocate and manage the buffer and then hand it over to the user. Obtained from: Todd Miller <Todd.Miller@courtesan.com> via OpenBSD | ||||
* | | fts_close calls free(sp), the ISSET(FTS_NOCHDIR) which is a macro that | phk | 1998-07-03 | 2 | -6/+8 |
| | | | | | | | | | | | | | | | | references sp. The free needs to follow ISSET PR: 7148 Reviewed by: phk Submitted by: Ken Mayer <kmayer@freegate.com> | ||||
* | | Cross-reference to sysconf(3). | eivind | 1998-06-30 | 1 | -1/+2 |
| | | |||||
* | | Fixed printf format errors. | bde | 1998-06-30 | 4 | -7/+7 |
| | | |||||
* | | Fixed scanf format errors. The error handling is not quite bug for bug | bde | 1998-06-30 | 1 | -7/+4 |
| | | | | | | | | | | | | compatible. I think small negative uids are handled compatibly but other out of bounds ones are truncated differently for certain sizes of uid_t. | ||||
* | | Fixed printf format errors. Don't assume so many things about time_t. | bde | 1998-06-30 | 1 | -20/+16 |
| | | | | | | | | | | | | Obtained from: partial merge of ADO version tzcode96h (was fully merged in 1.10 but backed out in 1.11; the FreeBSD code for %s was earlier, prettier but buggier). | ||||
* | | Fix btree problems. This passes regressions tests. | guido | 1998-06-25 | 2 | -2/+5 |
| | | | | | | | | | | | | PR: 7009 Obtained from: http://www.sleepycat.com/update/patch.185.html, patches 1.2, 1.3 and 1.4 | ||||
* | | preserve errno across the readlink() calls. There is no value in trashing | peter | 1998-06-18 | 1 | -1/+4 |
| | | | | | | | | errno during a successful malloc() call. | ||||
* | | Don't compile in the use of poll() when building libc_r. This isn't | peter | 1998-06-14 | 1 | -1/+15 |
| | | | | | | | | | | so much a "fix", rather a bandaid to buy time to fix it properly within the thread engine. | ||||
* | | Document EINVAL return value. | bde | 1998-06-14 | 1 | -0/+7 |
| | | |||||
* | | Make nlist() understand elf unconditionally | peter | 1998-06-12 | 2 | -5/+2 |
| | | |||||
* | | Update the resolver parts to bind-8.1.2 level. I have not touched the | peter | 1998-06-11 | 25 | -1733/+3219 |
| | | | | | | | | | | | | getXXXXbyYYYY() interfaces yet. Obtained from: diff relative to bind-8.1.2 sources | ||||
* | | Move ftok() from libcompat to libc, so that it can be closer to its | jdp | 1998-06-10 | 1 | -3/+3 |
| | | | | | | | | | | | | friend shmget(). PR: closes misc/6763 | ||||
* | | Fix grammar, "null" -> "NUL" | danny | 1998-06-10 | 1 | -5/+5 |
| | | |||||
* | | This is a null commit to log the fact that I have done a repository | jdp | 1998-06-10 | 2 | -2/+2 |
| | | | | | | | | | | | | | | copy to bring these files into libc from libcompat. I will enable them and kill off the libcompat versions on the main branch soon. PR: step one toward closing misc/6763 | ||||
* | | Remove __NETBSD_SYSCALLS from CFLAGS now that it is set in sys.mk. | jb | 1998-06-09 | 1 | -2/+3 |
| | | |||||
* | | Rename calls when building libc_r. | jb | 1998-06-09 | 1 | -3/+3 |
| | | |||||
* | | Make this thread-safe in both libc as well as libc_r. | jb | 1998-06-09 | 1 | -13/+2 |
| | | |||||
* | | Rename when building libc_r. | jb | 1998-06-09 | 5 | -9/+9 |
| | | |||||
* | | Add rename support for libc_r. | jb | 1998-06-09 | 1 | -1/+50 |
| | | |||||
* | | Fix potential resource leak: when call to des_crypt_1() fails, remember | wpaul | 1998-06-09 | 1 | -2/+3 |
| | | | | | | | | to destroy the RPC CLIENT handle before returning. | ||||
* | | Implement compile time thread lock debug. | jb | 1998-06-09 | 2 | -4/+4 |
| | | |||||
* | | Rename fstat as _thread_sys_fstat if being built into libc_r. | jb | 1998-06-09 | 1 | -1/+5 |
| | | |||||
* | | Implement thread support for libc_r. Make the lseek syscall directly | jb | 1998-06-09 | 1 | -2/+7 |
| | | | | | | | | to avoid recursive locking. | ||||
* | | Implement compile time debug mode for thread locks. | jb | 1998-06-09 | 3 | -11/+11 |
| | |