Commit Graph

8254 Commits

Author SHA1 Message Date
christos
9af7135771 add mutex locking for directories and readdir_r(3). Influenced by FreeBSD. 2003-05-28 20:03:37 +00:00
christos
c8042cb209 no need to declare __isthreaded. 2003-05-28 19:57:22 +00:00
kleink
9d85c4a5f8 Add ETIME, per POSIX-2001. 2003-05-27 22:37:33 +00:00
christos
143f5a277a pass lint:
1. add new pthread__abort() and change pthread_assert(0) to it.
2. put constcond in the right place (in the macro).
3. no space after pthread__assert macro.
2003-05-27 15:24:24 +00:00
christos
4e29fa8276 add missing notreached lint comment. 2003-05-27 15:22:56 +00:00
thorpej
119837ff52 Fix handing of -ve hexadecimal numbers in the %i format. Fixes
PR lib/21691.  Patch from Simon Burge.
2003-05-27 14:32:29 +00:00
nathanw
5faa7f5bef * Recycle upcall stacks as soon as possible rather than waiting to
accumulate half of the total number. There are too many ways for
  the SA subsystem to deadlock waiting for stacks that userland has no
  reason to recycle.

* Consolidate switchto handling in pthread_resolve_locks().

* Add code to re-chain the preempting parents of switchtos.

* Tweak debuglog output in a couple of cases.
2003-05-26 19:41:03 +00:00
itojun
74a8711692 protect from nasty PTR records which could be abused to workaround access
control:
	1.1.1.10.in-addr.arpa.	IN PTR	2.3.4.5
2003-05-26 10:05:07 +00:00
lha
47cfb027a2 install more man pages 2003-05-26 09:22:29 +00:00
lha
4a1a2b48c6 install more man pages 2003-05-26 01:11:55 +00:00
pooka
13ae509ab9 lint should pass "empty translation unit" now 2003-05-25 21:51:14 +00:00
pooka
e26029d0eb versions for file 4.03 2003-05-25 21:49:55 +00:00
wiz
a2c49e51e1 Fix typo reported by Douwe Kiela in PR 21677. 2003-05-25 17:19:42 +00:00
petrov
09ec250b4c Declare global register. 2003-05-23 18:20:14 +00:00
simonb
5d5afc14d8 Match END label with LEAF label. 2003-05-23 06:36:10 +00:00
wiz
c66093c273 Make i an int to please lint and remove a cast. 2003-05-22 16:09:09 +00:00
wiz
e6e9b32c33 Grammar fix; no functions returnint pointers here, so remove section
about those functions from RETURN VALUES section.
2003-05-22 09:25:52 +00:00
jdc
8b94a64a5a Remove erroneouly added file. 2003-05-21 21:24:36 +00:00
jdc
cbce99002b Cross reference curses_addchstr.3. 2003-05-21 21:22:15 +00:00
jdc
8b782b08d1 Increment libcurses minor for addition of addchstr() functions. 2003-05-21 21:21:14 +00:00
jdc
57b809b169 Add addchstr() family of functions.
Based on mail from Douwe Kiela.
Fixes PR lib/21285 by Thomas Klausner.
2003-05-21 21:19:52 +00:00
jdc
416748f2db Add mvw* functions. 2003-05-21 20:33:21 +00:00
kristerw
c87c28c18c Include string.h for strcmp. 2003-05-21 20:29:51 +00:00
wiz
68221b9ec6 Bump date for last. 2003-05-21 06:57:08 +00:00
jdc
ad216762c8 Add missing *printw manual page links.
Patch provided in PR lib/21446 by Douwe Kiela.
2003-05-21 06:46:51 +00:00
jdc
8aec7a6456 Sort addbytes(). 2003-05-21 06:16:16 +00:00
jdc
a365e46b92 Mention _CURSES_USE_MACROS. 2003-05-21 06:15:09 +00:00
wiz
fc7bf2b10c Nit fixes from jmc@openbsd. 2003-05-20 10:15:16 +00:00
jdc
2e4b986118 Add missing manual page links. 2003-05-20 06:54:44 +00:00
fvdl
b2a54b691e Back out previous for now. I already suspected part of it was wrong,
and there has been one report of problems in the mean time.
2003-05-19 09:26:15 +00:00
christos
56a0a03629 From Martin Blapp mb at imp dot ch, should fix PR/20768
Remove the special treatment off non-blocking mode in
xdrrec_eof(). This change broke seriously reading serialized
xdr-records. A end of a request could sometimes not
be recognized and the socket got closed too early.

Initialize in_reclen and in_received in a second case
if we get more outstanding records.
2003-05-18 23:59:28 +00:00
dsl
1473d232c3 Don't do __stopwin() if it is already stopped.
Allows error messages from programs like sysinst() to be seen.
(There is an explicit stopwin() before the error message is output,
and a second in the atexit() called cleanup() routine)
2003-05-18 10:02:07 +00:00
thorpej
5a467fa72d Add isinfl() and isnanl(). 2003-05-17 20:43:13 +00:00
thorpej
8969ba6ff5 Build _isinfl() and _isnanl(). 2003-05-17 15:05:52 +00:00
thorpej
f9345ff71e Add _isinfl() and _isnanl() routines, currently for internal use only. 2003-05-17 14:51:24 +00:00
itojun
6a95da7f05 bound copies 2003-05-17 01:36:03 +00:00
scw
5bd6b99940 Both pthread__lock_ras_start and pthread__lock_ras_end need to be
explicitly declared global in the asm() statements for the benefit of
SH5 binutils. Otherwise, the assembler/linker (I haven't figured out
which) botches the SHmedia bit when generating GOT references for
these symbols in the shared version of the library.

Ok'd by Nathan.
2003-05-16 23:37:47 +00:00
scw
644aebe258 Duh. s/PIC_PROLOGUE/PIC_EPILOGUE/ 2003-05-16 22:40:56 +00:00
nathanw
baa073280b Separately report unlocking an unlocked mutex and unlocking a mutex
owned by another thread.
2003-05-16 21:28:26 +00:00
wiz
b976c55907 Consistently spell "crash dump" as two separate words. From jmc@openbsd. 2003-05-16 10:24:55 +00:00
lha
f66ab28ab4 bump minors appropriately 2003-05-15 20:58:43 +00:00
lha
98326d86aa add files for heimdal 0.6 2003-05-15 20:51:01 +00:00
wiz
76907a433e Fix typo in comment. 2003-05-15 19:16:37 +00:00
nathanw
a06836c083 Remove an unnecessary test in pthread_getspecific(). 2003-05-15 19:13:24 +00:00
jmc
84b2ae9f5b Typo police 2003-05-15 16:46:55 +00:00
itojun
da3884cbf4 latest copyright notice (more loose). noted by wiz 2003-05-15 15:02:52 +00:00
kleink
affdf0b300 Change conformance reference to 1003.1-2001; the reference to 1003.1g is
retained in HISTORY.  Spotted by Thomas Klausner.
2003-05-15 10:16:36 +00:00
wiz
ccc85581a5 Point to IPC tutorials in /usr/share/doc/psd, update names, and add authors.
Bump date.
Suggested by kleink.
2003-05-15 10:13:53 +00:00
wiz
14cddbf770 Point to IPC tutorials in /usr/share/doc/psd, update names, and add authors.
Bump date.
Suggested by kleink.
2003-05-15 09:52:08 +00:00
wiz
d43e332f1e setup -> set up. 2003-05-14 12:11:03 +00:00