aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/sparc/nptl/sparc-nptl.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/sparc/nptl/sparc-nptl.h')
-rw-r--r--sysdeps/sparc/nptl/sparc-nptl.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/sysdeps/sparc/nptl/sparc-nptl.h b/sysdeps/sparc/nptl/sparc-nptl.h
deleted file mode 100644
index baff918288..0000000000
--- a/sysdeps/sparc/nptl/sparc-nptl.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _SPARC_NPTL_H
-
-union sparc_pthread_barrier
-{
- struct pthread_barrier b;
- struct sparc_pthread_barrier_s
- {
- unsigned int curr_event;
- int lock;
- unsigned int left;
- unsigned int init_count;
- unsigned char left_lock;
- unsigned char pshared;
- } s;
-};
-
-struct sparc_new_sem
-{
- unsigned int value;
- unsigned char lock;
- unsigned char private;
- unsigned char pad[2];
- unsigned long int nwaiters;
-};
-
-struct sparc_old_sem
-{
- unsigned int value;
- unsigned char lock;
- unsigned char private;
-};
-
-#endif