clone: make clone a wrapper around __clone
authorBobby Bingham <koorogi@koorogi.info>
Fri, 7 Feb 2014 04:11:22 +0000 (22:11 -0600)
committerBobby Bingham <koorogi@koorogi.info>
Mon, 10 Feb 2014 02:07:43 +0000 (20:07 -0600)
commitfdf5f1b13123883ac1d5e298e5f32c7ed43578ce
tree56cddbaadf3f67c66a4914f4a3db7ae6d19a7aa6
parent7ee48f7b69523c68768684551bc37ba05496c27f
clone: make clone a wrapper around __clone

The architecture-specific assembly versions of clone did not set errno on
failure, which is inconsistent with glibc.  __clone still returns the error
via its return value, and clone is now a wrapper that sets errno as needed.
The public clone has also been moved to src/linux, as it's not directly
related to the pthreads API.

__clone is called by pthread_create, which does not report errors via
errno.  Though not strictly necessary, it's nice to avoid clobbering errno
here.
src/linux/clone.c [new file with mode: 0644]
src/thread/arm/clone.s
src/thread/clone.c
src/thread/i386/clone.s
src/thread/microblaze/clone.s
src/thread/x86_64/clone.s