]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/um/os-Linux/tls.c
kernel-doc: allow unnamed bit-fields
[linux-2.6-omap-h63xx.git] / arch / um / os-Linux / tls.c
index 63dfcf70937723a5a1631a161699eb2a998b414b..73277801ef14b69a8656ee978a63759be9b5c29f 100644 (file)
@@ -1,15 +1,9 @@
 #include <errno.h>
 #include <sys/ptrace.h>
-#include <asm/ldt.h>
-#include "uml-config.h"
+#include "sysdep/tls.h"
 
 /* TLS support - we basically rely on the host's one.*/
 
-/* In TT mode, this should be called only by the tracing thread, and makes sense
- * only for PTRACE_SET_THREAD_AREA. In SKAS mode, it's used normally.
- *
- */
-
 #ifndef PTRACE_GET_THREAD_AREA
 #define PTRACE_GET_THREAD_AREA 25
 #endif
@@ -18,9 +12,8 @@
 #define PTRACE_SET_THREAD_AREA 26
 #endif
 
-int os_set_thread_area(void *data, int pid)
+int os_set_thread_area(user_desc_t *info, int pid)
 {
-       struct user_desc *info = data;
        int ret;
 
        ret = ptrace(PTRACE_SET_THREAD_AREA, pid, info->entry_number,
@@ -30,11 +23,8 @@ int os_set_thread_area(void *data, int pid)
        return ret;
 }
 
-#ifdef UML_CONFIG_MODE_SKAS
-
-int os_get_thread_area(void *data, int pid)
+int os_get_thread_area(user_desc_t *info, int pid)
 {
-       struct user_desc *info = data;
        int ret;
 
        ret = ptrace(PTRACE_GET_THREAD_AREA, pid, info->entry_number,
@@ -43,35 +33,3 @@ int os_get_thread_area(void *data, int pid)
                ret = -errno;
        return ret;
 }
-
-#endif
-
-#ifdef UML_CONFIG_MODE_TT
-#include "linux/unistd.h"
-
-_syscall1(int, get_thread_area, struct user_desc *, u_info);
-_syscall1(int, set_thread_area, struct user_desc *, u_info);
-
-int do_set_thread_area_tt(struct user_desc *info)
-{
-       int ret;
-
-       ret = set_thread_area(info);
-       if (ret < 0) {
-               ret = -errno;
-       }
-       return ret;
-}
-
-int do_get_thread_area_tt(struct user_desc *info)
-{
-       int ret;
-
-       ret = get_thread_area(info);
-       if (ret < 0) {
-               ret = -errno;
-       }
-       return ret;
-}
-
-#endif /* UML_CONFIG_MODE_TT */