Commit Graph

9135 Commits

Author SHA1 Message Date
jdc
efc30049d8 Add KEY_RESIZE support and a SIGWINCH handler.
Fixes PR bin/20032.
This requires a change to KEY_MAX, which affects libform and libmenu, so we
need to change libcurses major number.
2004-03-22 18:57:10 +00:00
martin
f85414fd31 Simplify slightly and fix a comment. 2004-03-22 18:35:51 +00:00
wiz
848e689872 Typo fix, from skrueger at europe com. 2004-03-22 13:41:09 +00:00
pk
3aa621c910 Use setcontext() instead of sigreturn() to implement longjmp(). 2004-03-22 12:35:04 +00:00
groo
19aa054c0d Actually install the new man pages. 2004-03-22 00:48:04 +00:00
matt
4b376ded6a Change longjmp on VAX (ELF) to use setcontext instead of sigreturn14. 2004-03-21 18:19:52 +00:00
matt
ca145383c7 Change longjmp to use setcontext instead of sigreturn14. Change setjmp
to use symbolic offsets via assym.h
2004-03-21 18:04:27 +00:00
mrg
3b66f6e642 clean up my copyright 2004-03-21 05:47:44 +00:00
mrg
05cd119306 remove my copyright statement 2004-03-21 05:46:42 +00:00
groo
80ddfc8cb9 update documentation from 0.9.7b to 0.9.7d 2004-03-20 21:48:44 +00:00
kleink
78a2369a15 Make casing in previous consistent. 2004-03-19 19:30:23 +00:00
kleink
ddfc3e5143 %% doesn't write anything; a literal % is matched. Noted by Hubert Feyrer. 2004-03-19 19:28:08 +00:00
scw
d25d657094 sigreturn14 is deprecated, so don't use it in longjmp. 2004-03-17 00:35:08 +00:00
wiz
789ce34c16 Remove duplicate article. 2004-03-16 19:51:08 +00:00
snj
9bfae9c898 Spelling fixes. 2004-03-16 19:27:35 +00:00
snj
dcf4b5a2bf Spelling fix. 2004-03-16 19:26:56 +00:00
snj
668bade8ea Spelling fixes. 2004-03-16 19:25:39 +00:00
snj
83b07697ca Spelling fix. 2004-03-16 19:20:20 +00:00
snj
066778123d Drop trailing whitespace. 2004-03-16 19:08:15 +00:00
wiz
f812f7e9a5 Fix off-by-one, okayed by jdc. 2004-03-16 10:58:25 +00:00
wiz
0cc0ff5935 Drop trailing space. 2004-03-16 09:46:36 +00:00
jdc
a02733d775 s/can_change_colors/can_change_color/ 2004-03-16 07:55:05 +00:00
jdc
424b4f06a5 Clarify colour values that can be passed to init_pair(). 2004-03-16 07:54:32 +00:00
jdc
ed325dfb85 Accept any negative number of init_pair(). Noticed by Peter Bex.
Swap red/blue and yellow/cyan if necessary in assume_default_colors().
2004-03-16 07:52:43 +00:00
jdc
a61e837cb5 gcc -Wuninitialized 2004-03-16 07:49:01 +00:00
jdc
404624e2be We no longer need <signal.h>. 2004-03-16 07:48:18 +00:00
jdc
72d6b43902 s/colour/color/. From Douwe Keila. 2004-03-16 07:46:24 +00:00
jdc
6db03ed922 Minor style change. 2004-03-16 07:44:31 +00:00
yamt
936455ecbc "Upcall handlers should be registered" -> "An upcall handler ..."
as only one handler can be registered.
2004-03-14 23:05:09 +00:00
wiz
60f9cb09db Begin sentences with uppercase letters. 2004-03-14 20:57:49 +00:00
he
99f69b6c5f It appears that <sys/lock.h> requires <sys/types.h>, so include that as well. 2004-03-14 12:49:31 +00:00
snj
ae6d7048fe Spelling fix. 2004-03-14 10:36:09 +00:00
snj
63b1d00163 Fix macro usage and a slight English problem. 2004-03-14 10:22:06 +00:00
snj
cd1f209f54 English fix. 2004-03-14 10:21:22 +00:00
snj
2fdc7bef13 English improvements. 2004-03-14 10:20:43 +00:00
snj
4e8e4580a2 Fix macro usage, use Dv for SA_FLAG_STACKINFO, and English nits. 2004-03-14 10:19:59 +00:00
snj
bcba66f310 Minor English nits. 2004-03-14 10:18:33 +00:00
yamt
e71ca4ef99 some manpages of scheduler activation syscalls. 2004-03-14 09:18:45 +00:00
cl
f3f745b9af fix comment for recent pthread_stack* var rename 2004-03-14 01:20:01 +00:00
cl
f2f106648c add libpthread part of concurrency support for SA on MP systems
- enable concurrency according to environment variable PTHREAD_CONCURRENCY
- add idle VP wakeup if there are additional jobs and idle VPs
- make reidlequeue per VP
- enable spinning for locks
- fix race condition in alarm processing
- fix race condition in mutex locking
- make debugging output line buffered and add VP prefix to debug lines
2004-03-14 01:19:41 +00:00
wiz
15d1617c9e Two grammar fixes from jmc@openbsd. 2004-03-13 23:46:37 +00:00
uebayasi
456930e651 Don't convert text if *.mo doesn't specify codeset.
Analyzed by Takehiko Nozaki, tested by Sean Davis, OK'ed by yamt.
2004-03-13 04:58:04 +00:00
enami
4604becb77 Sprinkle cast to prevent unwanted sign extension. Some of those actually
makes sed invoked during build process an out of bound array access.
2004-03-12 22:34:09 +00:00
drochner
ca430e5111 Really, there is no need to use the old int0x80 syscall entry just for
getcontext(). There are some registers not properly saved with the
new syscall entry, but these are calee-saved, scratch or meaningless.
It's the setcontext() return path what matters.
2004-03-09 20:21:22 +00:00
skrll
337520b409 Include bsd.own.mk before testing MKPIC 2004-03-09 20:04:00 +00:00
drochner
294b4fa9f2 we also have to reset bits in the i387 status
as required
2004-03-09 17:16:13 +00:00
drochner
b79602af35 -clear status bits in mxcsr as required
-return the old accumulated status bits
2004-03-05 16:27:56 +00:00
lukem
a19008b17f Explicitly use base 10 when parsing numbers, to enforce the "decimal number"
semantics that the comments referred to and as per dd(1) (which was the
origin of this functionality).
2004-03-05 05:58:29 +00:00
wiz
49bcfb35d8 Call it Adler-32 consistently. From jmc@openbsd. 2004-03-05 01:30:52 +00:00
wiz
06588a00dd Sort SEE ALSO, drop trailing space. 2004-03-04 23:49:31 +00:00