about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/bits
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-04-26 04:50:57 +0000
committerUlrich Drepper <drepper@redhat.com>2007-04-26 04:50:57 +0000
commitec08f13dad2a25a407f4aff76b406924c91193ec (patch)
tree44570892b815a8bcbe7b5e08bec59c2ae7734182 /sysdeps/unix/sysv/linux/bits
parent46d51e9bd35a1d9d9af8398466a0db2bf88ae5bc (diff)
downloadglibc-ec08f13dad2a25a407f4aff76b406924c91193ec.tar.gz
glibc-ec08f13dad2a25a407f4aff76b406924c91193ec.tar.xz
glibc-ec08f13dad2a25a407f4aff76b406924c91193ec.zip
* sysdeps/unix/sysv/linux/bits/sched.h: Declare sched_getcpu.
	* sysdeps/unix/sysv/linux/sched_getcpu.c: New file.
	* sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: New file.
	* sysdeps/unix/sysv/linux/Versions: Export sched_getcpu for
	GLIBC_2.6.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r--sysdeps/unix/sysv/linux/bits/sched.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h
index 1d9c7b9f35..31db66f8ac 100644
--- a/sysdeps/unix/sysv/linux/bits/sched.h
+++ b/sysdeps/unix/sysv/linux/bits/sched.h
@@ -77,6 +77,9 @@ extern int clone (int (*__fn) (void *__arg), void *__child_stack,
 
 /* Unshare the specified resources.  */
 extern int unshare (int __flags) __THROW;
+
+/* Get index of currently used CPU.  */
+extern int sched_getcpu (void) __THROW;
 #endif
 
 __END_DECLS