#
69065e88 |
| 29-Jul-2000 |
Peter Wemm <peter@FreeBSD.org> |
Regenerate with makesyscalls.sh
|
Revision tags: release/4.1.0 |
|
#
d5124417 |
| 17-Jul-2000 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implement pread and pwrite.
PR: 17991 Submitted by: Geoffrey Speicher <geoff@caribbean.sea-incorporated.com>
|
Revision tags: release/3.5.0_cvs |
|
#
9114579d |
| 09-May-2000 |
Bruce Evans <bde@FreeBSD.org> |
Regenerated (fixed the calculation of sy_nargs in sysent tables).
|
Revision tags: release/4.0.0_cvs |
|
#
edfd2542 |
| 29-Jan-2000 |
Peter Wemm <peter@FreeBSD.org> |
Regen after pointing to the real setres[ug]id(). Remove dummy function. (Note: getres[ug]id is still a dummy as it returns via pointers to a different sized integer and does need real wrappers.)
|
#
0484ef81 |
| 10-Jan-2000 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Update syscalls to Linux kernel 2.3.38. These syscalls are implemented as dummies to ease problem solving.
|
Revision tags: release/3.4.0_cvs |
|
#
ec99e322 |
| 30-Nov-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implement linux_sigaltstack.
|
#
408da119 |
| 27-Nov-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implement linux_ustat.
Reviewed by: bde
|
#
25e5bdab |
| 26-Nov-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implement fdatasync in terms of fsync. The regeneration of proto.h, syscall.h and sysent.h was probably forgotten after the last change syscalls.master.
|
#
f581b15f |
| 23-Sep-1999 |
Luoqi Chen <luoqi@FreeBSD.org> |
Regeneration.
|
Revision tags: release/3.3.0_cvs |
|
#
21859779 |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
Regen after Id->FreeBSD
|
#
2fdc82e0 |
| 25-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Change all UNIMPL syscalls to STD and add them to linux_dummy. Now we always know if and when an unimplemented or obsoleted syscall is being used. Make the message more end-user friendly.
And as lon
Change all UNIMPL syscalls to STD and add them to linux_dummy. Now we always know if and when an unimplemented or obsoleted syscall is being used. Make the message more end-user friendly.
And as long as we're here, rename some unimplemeted syscalls (linux_phys -> linux_umount2, linux_vm86 -> linux_vm86old, linux_new_vm86 -> linux_vm86).
Change prototype for linux_newuname from `struct linux_newuname_t *' into `struct linux_new_utsname *'. This change is reflected in linux.h and linux_misc.c.
show more ...
|
#
42035021 |
| 16-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implement linux_vfork() syscall by calling vfork(). Analogous to the linux_fork() implementation.
|
#
a171f5ad |
| 15-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Provide wrappers for sched_{s|g}etscheduler. We need to convert the policy argument.
PR: 12006 Originator: Jean-Claude MICHOT <jcmichot@teaser.fr>
|
#
81d960fa |
| 14-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implementation of the linux_getcwd syscall.
|
#
06ebbe77 |
| 14-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Implementation of linux_rt_sigaction and linux_rt_sigprocmask syscalls. Both functions use the new sigset_t and sigaction_t which allows support for more than 32 signals. Only the lower 32 signals ar
Implementation of linux_rt_sigaction and linux_rt_sigprocmask syscalls. Both functions use the new sigset_t and sigaction_t which allows support for more than 32 signals. Only the lower 32 signals are supported for now.
linux_rt_sigaction, linux_sigaction and linux_signal use linux_do_sigaction to do the actual work. That way unnecessary redundancy is avoided. The same has been done for linux_rt_sigprocmask and linux_sigprocmask. They call linux_do_sigprocmask to do the actual work.
show more ...
|
#
00d3c516 |
| 12-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Use a wrapper for the link syscall that does name translations.
PR: 12749 Submitted by: Boris Nikolaus <boris@cs.tu-berlin.de>
|
#
175db64b |
| 11-Aug-1999 |
Marcel Moolenaar <marcel@FreeBSD.org> |
Do not map {s|g}etrlimit onto FreeBSD syscalls. The arguments don't match. The linux syscalls translate the arguments first before invoking the FreeBSD native syscalls.
PR: kern/9591 Originator: Joh
Do not map {s|g}etrlimit onto FreeBSD syscalls. The arguments don't match. The linux syscalls translate the arguments first before invoking the FreeBSD native syscalls.
PR: kern/9591 Originator: John Plevyak <jplevyak@inktomi.com>
show more ...
|
Revision tags: release/3.2.0, release/3.1.0, release/3.0.0, release/2.2.8 |
|
#
397e4760 |
| 30-Dec-1998 |
Søren Schmidt <sos@FreeBSD.org> |
Commit #2 of
PR: 9235 Submitted by: marcel@scc.nl <Marcel Moolenaar>
|
#
5b3c7910 |
| 22-Dec-1998 |
Søren Schmidt <sos@FreeBSD.org> |
The result of running make linux_sysent.c on the new syscalls.master
|
#
bfc338e0 |
| 21-Dec-1998 |
Søren Schmidt <sos@FreeBSD.org> |
The result of running make linux_sysent.c on the new syscall.master file
|
#
6626c604 |
| 19-Dec-1998 |
Julian Elischer <julian@FreeBSD.org> |
Reviewed by: Luoqi Chen, Jordan Hubbard Submitted by: "Richard Seaman, Jr." <lists@tar.com> Obtained from: linux :-)
Code to allow Linux Threads to run under FreeBSD.
By default not enabled This
Reviewed by: Luoqi Chen, Jordan Hubbard Submitted by: "Richard Seaman, Jr." <lists@tar.com> Obtained from: linux :-)
Code to allow Linux Threads to run under FreeBSD.
By default not enabled This code is dependent on the conditional COMPAT_LINUX_THREADS (suggested by Garret) This is not yet a 'real' option but will be within some number of hours.
show more ...
|
Revision tags: release/2.2.7 |
|
#
d14897d3 |
| 11-Jul-1998 |
Jordan K. Hubbard <jkh@FreeBSD.org> |
Quick and dirty support for Linux's mremap. Not used by anything but quake2 AFAIK.
Submitted by: Luoqi Chen <luoqi@watermarkgroup.com>
|
#
39b14624 |
| 09-Jun-1998 |
Bruce Evans <bde@FreeBSD.org> |
Updated generated files.
|
#
00d21a13 |
| 29-Mar-1998 |
Peter Wemm <peter@FreeBSD.org> |
regenerate
|
#
8a6472b7 |
| 28-Mar-1998 |
Peter Dufault <dufault@FreeBSD.org> |
Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B and _KPOSIX_PRIORITY_SCHEDULING options to work. Changes:
Change all "posix4" to "p1003_1b". Misnamed files are left as "posix4" until I'm told i
Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B and _KPOSIX_PRIORITY_SCHEDULING options to work. Changes:
Change all "posix4" to "p1003_1b". Misnamed files are left as "posix4" until I'm told if I can simply delete them and add new ones;
Add _POSIX_PRIORITY_SCHEDULING system calls for FreeBSD and Linux;
Add man pages for _POSIX_PRIORITY_SCHEDULING system calls;
Add options to LINT;
Minor fixes to P1003_1B code during testing.
show more ...
|