christos
f44796a7b7
PR/30839: Tomas Skäre: Buffer underflow in lib/libc/stdio/tempnam.c
...
when *dir == "".
2005-07-26 16:12:49 +00:00
christos
e7adb37afc
PR/30832: Tomas Skäre: Freed memory used in lib/libc/getnetgrent.c
...
While there, KNF and ansify.
2005-07-25 14:38:48 +00:00
rpaulo
25a6efd600
Fix another sigignore -> sigset typo.
...
ok klenik@, hubertf@
2005-07-24 21:58:32 +00:00
rpaulo
fcfde3ffb8
Bump minor version for log2{,f}.
2005-07-21 22:49:16 +00:00
rpaulo
1185f13617
Add i387 FPU routines for log2(3) and log2f(3).
...
ok christos@
2005-07-21 20:58:21 +00:00
christos
9aa540a2b5
Add wrappers for the newly added functions. Thanks Klaus!
2005-07-21 16:58:39 +00:00
wiz
d957cc9d17
Punctuation fixes, bump date for log2{,f}.
2005-07-21 12:58:22 +00:00
christos
e5c18e58f2
Add log2 and log2f from FreeBSD PR 83845
2005-07-21 12:55:58 +00:00
christos
b255b1535e
PR/30971: Noriyuki Soda: Fix %ll prints long long, and %q is not portable.
2005-07-20 13:31:15 +00:00
christos
e99183b649
Add comments at the end of #endif's; Requested by Havard Eidnes.
2005-07-17 16:07:36 +00:00
isaki
e70e55fa02
Correct a typo.
2005-07-17 05:06:57 +00:00
nathanw
0774992407
Add cancellation protection to pthread_once() as per the standard; if
...
the once routine is cancelled, the effect on once_control is as if
pthread_once() was never called.
Bug report and fix from PR lib/30734.
2005-07-16 23:14:53 +00:00
christos
ed7ae36357
Fix linted comments and use __UNCONST.
2005-07-16 19:48:09 +00:00
christos
aeec445c81
Use CPPFLAGS for -D flags otherwise lint does not get it.
2005-07-16 19:36:25 +00:00
christos
c13c780daf
Ignore indirect references when linting.
...
XXX: All this is done backwards, and is a mess. Really the _foo.c files should
include the _foo function definition, not the foo.c files, like everywhere
else.
2005-07-16 18:01:38 +00:00
christos
47bfe475f7
Add missing _.
2005-07-16 18:00:40 +00:00
christos
fce61e5249
revert previous, my include files were out of day.
2005-07-16 17:32:09 +00:00
christos
b5626a3a22
Fix prototype inconsistency, discovered by lint2 fixes.
2005-07-16 17:15:46 +00:00
christos
55b453fa3c
don't play #define games with lint. Breaks pass2.
2005-07-16 17:12:36 +00:00
christos
10ca8c1c36
We don't need to define fork anymore (pthread_atfork.c) or setlogin
...
(setlogin.c). Lint pass 2 works now.
2005-07-16 17:12:12 +00:00
wiz
6220c813a6
Drop trailing whitespace.
2005-07-14 15:02:37 +00:00
christos
45542456a5
PR/30747: David N. Williams: libedit is missing remove_history()
...
Added, please test.
2005-07-14 15:00:58 +00:00
wiz
2c8c6850a4
Remove superfluous Pp, sort sections.
2005-07-12 08:28:42 +00:00
wiz
d2aabe58d4
Remove superfluous Pp.
2005-07-12 08:28:27 +00:00
christos
32bff6afc2
Fix memory leaks found by valgrind. From Julien Torres
2005-07-06 21:13:02 +00:00
drochner
e0d7e15c44
tolerate NULL pointers at some places
2005-07-06 17:17:15 +00:00
drochner
45ec6e4557
add some clarification, and refer to POSIX
...
partly borrowed from FreeBSD
2005-07-06 17:02:56 +00:00
drochner
64df4b988e
fix for non-const lsearch() arg, also fix return values and the
...
description of the comparision function, and refer to POSIX
partly borrowed from FreeBSD
2005-07-06 16:57:28 +00:00
drochner
ecef4b3d3f
The source array of lsearch() shouldn't be "const".
...
Being here, cleanup the const castaway stuff.
2005-07-06 15:47:15 +00:00
drochner
e866f2794b
Move insque/remque/lsearch/lfind from libcompat to libc,
...
they are in XPG4-UNIX, XSH5.0, mentioned in SUSv3 etc.
Minimal update of the manpages. (more needed)
2005-07-06 14:43:24 +00:00
enami
8bf4305eee
Fixes to previous:
...
- Don't handle single and multiple slashes differently.
- A symlink to a directory can be appear in the middle of path. Don't
reject it.
2005-07-05 02:56:12 +00:00
elad
0b9ed39b26
Make realpath(3) work correctly.
...
The current code resolves paths like `/foo/bar/', `/foo/bar/./', and
`/foo/bar/../', even if `bar' is a regular file and not a directory.
Reviewed by cube@.
2005-07-04 20:44:47 +00:00
yamt
9493e4bf43
make this compile without PTHREAD_MLOCK_KLUDGE.
2005-07-01 12:35:18 +00:00
simonb
2c43674831
Remove fips_standalone_sha1.c - fixes problem mentioned by Hubert Feyrer
...
on current-users.
OK'd by christos.
2005-06-29 14:41:16 +00:00
christos
5223acf25d
Ignore lint argument promotion warnings (for now).
2005-06-28 16:01:59 +00:00
wiz
0fd61eded9
Fix pasto, noted by Marc Espie.
2005-06-27 14:18:36 +00:00
thorpej
1fc5e9b8c4
_nsdispatching needs to count, not just be 1 or 0. Also shuffle around
...
its use a little to eliminate some duplication.
2005-06-26 16:27:36 +00:00
thorpej
65412a2710
Implement expansion of special "magic" strings in symlinks into
...
system-specific values. Submitted by Chris Demetriou in Nov 1995 (!)
in PR kern/1781, modified only slighly by me.
This is enabled on a per-mount basis with the MNT_MAGICLINKS mount
flag. It can be enabled at mountroot() time by building the kernel
with the ROOTFS_MAGICLINKS option.
The following magic strings are supported by the implementation:
@machine value of MACHINE for the system
@machine_arch value of MACHINE_ARCH for the system
@hostname the system host name, as set with sethostname()
@domainname the system domain name, as set with setdomainname()
@kernel_ident the kernel config file name
@osrelease the releaes number of the OS
@ostype the name of the OS (always "NetBSD" for NetBSD)
Example usage:
mkdir /arch/i386/bin
mkdir /arch/sparc/bin
ln -s /arch/@machine_arch/bin /bin
2005-06-23 00:30:28 +00:00
he
0ec45ddeab
Fix the toolification of disklabel by using the nbinclude namespace
...
under HAVE_NBTOOL_CONFIG_H for disktab.h as well. This means
disktab.h has to be installed in the nbinclude include directory.
(Failure mode: with TOOLDIR as a subdirectory of /usr, the host's disktab.h
got picked up, and not the in-tree copy.)
Reviewed by dyoung.
2005-06-22 21:35:28 +00:00
christos
07c1b4dc67
If the string to be printed is NULL substitute "(null)". Approved by core.
...
This is a workaround to make gcc's behavior consistent, since gcc can
transform:
printf("%s\n", s) -> puts(s)
fprintf(fp, "%s", s) -> fputs(s, fp)
as an optimization.
I've left the _DIAGASSERT's that make sure that s != NULL alone because we
should really still abort in a debugging environment.
2005-06-22 19:45:22 +00:00
christos
098f26dce7
Document that passing NULL to %s prints "(null)".
2005-06-21 18:43:17 +00:00
elad
0e4dfe1792
- Use more calls to veriexec_report() where possible.
...
- Change #ifdef VERIFIED_EXEC_VERBOSE to another verbose level, 2. Add
sysctl(3) bits.
- Simplify access type conflict handling during load. This depends on
the values of access type defines to be ordered from least to most
'strict'.
2005-06-20 15:06:18 +00:00
lukem
d249206e30
use "tempnam" instead of "tmpname"
2005-06-18 10:50:25 +00:00
peter
d4cc3cce89
Create links for pthread_attr_setschedparam.3
...
and pthread_attr_getschedparam.3 to pthread_attr.3.
From Igor Sobrado in PR/29997.
2005-06-17 18:37:24 +00:00
wiz
52e496a68e
New sentence, new line.
2005-06-17 18:26:53 +00:00
wiz
27d002e8de
New sentence, new line.
...
Break much too long line.
2005-06-17 18:23:52 +00:00
peter
a28acffec8
Don't create links to pthread_barierattr_init.3 and
...
pthread_barierattr_destroy.3 but to pthread_barrierattr_init.3
and pthread_barrierattr_destroy.3 (note the 2 rs in barrier).
2005-06-17 18:23:19 +00:00
wiz
f076596bae
New sentence, new line.
2005-06-17 18:19:39 +00:00
peter
9231683ec7
Fix some spelling errors.
...
From Igor Sobrado in PR/29997.
2005-06-17 18:08:00 +00:00
peter
568accb2c0
Fix various spelling errors.
...
From Igor Sobrado in PR/29997.
2005-06-17 18:07:06 +00:00