summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_sched.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove the Linux emulation code, no longer referenced by anythingnaddy2016-03-021-70/+0
|
* Unify header sentinel names.pirofti2011-04-051-4/+4
|
* Sanity check flags in fork1(), banning some combos we don't supportguenther2009-12-281-2/+13
| | | | | | | | | | | and catching FORK_THREAD when RTHREADS wasn't compiled in. Simplify sys_rfork() based on that. Flesh out the Linux clone support with more flags, but stricter checks for missing support or bad combos. Still not enough for NPTL to work, mind you. ok kettenis@
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* On popular demand, the Linux-compatibility clone(2) implementation basedniklas2001-04-021-0/+66
on NetBSD's code, as well as some faked Posix RT extensions by me. This makes at least simple linuxthreads tests work.