diff options
Diffstat (limited to 'sysdeps/sparc/nptl/sparc-nptl.h')
-rw-r--r-- | sysdeps/sparc/nptl/sparc-nptl.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sysdeps/sparc/nptl/sparc-nptl.h b/sysdeps/sparc/nptl/sparc-nptl.h new file mode 100644 index 0000000000..baff918288 --- /dev/null +++ b/sysdeps/sparc/nptl/sparc-nptl.h @@ -0,0 +1,33 @@ +#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 |