Age | Commit message (Collapse) | Author |
|
CAVEATS: Assumes that a new socket can't have any of the
FCNTLFLAGS set on it, which _is_ true, currently... (guenther@)
Okay guenther@, deraadt@.
|
|
This enables the linux_child_return bits that set the TLS base in the
newly forked process.
Before this, processes that had the flag set would get a null pointer and
segfault when trying to access the TLS area.
Chased down and fixed by me. Turned into a proper one line diff by guenther@.
|
|
Doesn't matter if we need to relocate or not.
Makes sense to jasper@
|
|
Okay jasper@
|
|
Sleep on the actual data address and not on the stack address of
the pointer to the data.
Okay jasper@
|
|
Okay jasper@
|
|
using copyin() anyway.
ok pirofti@
|
|
|
|
Nobody calls linux_sys_tkill anymore so code for that is not needed.
If this will become an issue in the future a simple wrapper will fix that.
Okay jasper@.
|
|
|
|
Okay jasper@
|
|
The newer glibc's, when creating a socket, add some higher bit flags to
the type argument that are used for debug, statistics, profiling
whatever. They are not useful and implementation specific.
This is needed for DNS resolving, otherwise the nss library from glibc
will always fail to do the right thing.
Okay jasper@
|
|
|
|
This avoids a potential lost-wakeup as pointed out by guenther@.
Now the futex is locked all through the process and EAGAIN is returned
on failure.
Makes sense to guenther@.
|
|
Okay jasper@.
|
|
|
|
Looks right to jasper@ as well.
|
|
sysctl() to be per-process instead of per-thread. This means the
filedesc table has to really be per-process instead of per-thread,
so make it an error for the linux clone() emulation to try to do
otherwise. This removes pointless duplication in fstat's output.
requested by jsing@ and deraadt@, ok matthew@ deraadt@
|
|
the TCB value from the parent instead of having it zeroed.
ok pirofti@
|
|
|
|
Okay matthew@.
|
|
|
|
While at it get rid of some magic numbers and add support for more
filesystem types (like NTFS, AFS etc.).
Suggestions and feedback from ajacoutot@, jsing@ and matthew@.
Okay matthew@.
|
|
anticipation of further changes to closef(). No binary change.
ok krw@ miod@ deraadt@
|
|
|
|
count processes instead of threads. New sysctl()s KERN_NTHREADS and
KERN_MAXTHREAD count and limit threads. The nprocs and maxproc kernel
variables are replaced by nprocess, maxprocess, nthreads, and maxthread.
ok tedu@ mikeb@
|
|
of per-rthread. Handling of per-thread tick and runtime counters
inspired by how FreeBSD does it.
ok kettenis@
|
|
|
|
ok pirofti@
|
|
linux bits compiled on i386 by sebastia@, mikeb@ ok
|
|
ok pirofti@
|
|
the IPC_RMID flag.
This is permitted as an extension beyond the standards and this is similar
to what other operating systems like linux do.
Because compat_linux(8) was emulating this already, remove that code
since now this is the default.
input from oga@, guenther@, jmc@, deraadt@
ok deraadt@
|
|
|
|
Noticed by fgs@, thanks!
|
|
|
|
|
|
Okay claudio@
|
|
|
|
|
|
|
|
Based on Emmanuel Dreyfus work with additions, tricks and adaptations by me.
Lots of help and reviewing by guenther@ and oga@.
Okay guenther@.
|
|
move that out of i386_set_threadbase(), and have clone() pass NULL
to fork1() for the child func argument so that it gets the child
proc pointer.
Report and verification by pirofti@, heavy lifting by matthew@
|
|
|
|
107 does (i.e., using a pointer to "struct linux_stat" rather than a
pointer to "struct stat43").
No binary change: entry 84 is "NOARGS" so the prototype only goes into
a comment in linux_syscall.h.
|
|
|
|
|
|
ok guenther
|
|
|
|
|
|
|