diff options
author | Wim <wim@42.be> | 2022-11-27 00:42:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 00:42:16 +0100 |
commit | 4fd0a7672777f0ed15692ae2ba47838208537558 (patch) | |
tree | b119834a8b9ee78aa8f1b2ad05efa7da50516cbf /vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go | |
parent | 6da9d567dc9195e9a5211f23a6795a41f56a1bfc (diff) | |
download | matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.gz matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.bz2 matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.zip |
Update dependencies (#1929)
Diffstat (limited to 'vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go')
-rw-r--r-- | vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go | 39 |
1 files changed, 24 insertions, 15 deletions
diff --git a/vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go b/vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go index 64380338..0a09f1aa 100644 --- a/vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go +++ b/vendor/modernc.org/libc/pthread/pthread_linux_ppc64le.go @@ -894,7 +894,8 @@ type X__syscall_slong_t = int64 /* types.h:196:33 */ type X__syscall_ulong_t = uint64 /* types.h:198:33 */ // These few don't really vary by system, they always correspond -// to one of the other defined types. +// +// to one of the other defined types. type X__loff_t = X__off64_t /* types.h:202:19 */ // Type of file sizes and offsets (LFS). type X__caddr_t = uintptr /* types.h:203:14 */ @@ -905,8 +906,9 @@ type X__intptr_t = int64 /* types.h:206:25 */ type X__socklen_t = uint32 /* types.h:209:23 */ // C99: An integer type that can be accessed as an atomic entity, -// even in the presence of asynchronous interrupts. -// It is not currently necessary for this to be machine-specific. +// +// even in the presence of asynchronous interrupts. +// It is not currently necessary for this to be machine-specific. type X__sig_atomic_t = int32 /* types.h:214:13 */ // Wide character type. @@ -998,7 +1000,8 @@ type Time_t = X__time_t /* time_t.h:7:18 */ // values. // POSIX.1b structure for a time value. This is like a `struct timeval' but -// has nanoseconds instead of microseconds. +// +// has nanoseconds instead of microseconds. type Timespec = struct { Ftv_sec X__time_t Ftv_nsec X__syscall_slong_t @@ -1756,18 +1759,21 @@ type X__pthread_cond_s = struct { } /* thread-shared-types.h:92:1 */ // Thread identifiers. The structure of the attribute type is not -// exposed on purpose. +// +// exposed on purpose. type Pthread_t = uint64 /* pthreadtypes.h:27:27 */ // Data structures for mutex handling. The structure of the attribute -// type is not exposed on purpose. +// +// type is not exposed on purpose. type Pthread_mutexattr_t = struct { F__ccgo_pad1 [0]uint32 F__size [4]uint8 } /* pthreadtypes.h:36:3 */ // Data structure for condition variable handling. The structure of -// the attribute type is not exposed on purpose. +// +// the attribute type is not exposed on purpose. type Pthread_condattr_t = struct { F__ccgo_pad1 [0]uint32 F__size [4]uint8 @@ -1791,7 +1797,8 @@ type Pthread_mutex_t = struct{ F__data X__pthread_mutex_s } /* pthreadtypes.h:72 type Pthread_cond_t = struct{ F__data X__pthread_cond_s } /* pthreadtypes.h:80:3 */ // Data structure for reader-writer lock variable handling. The -// structure of the attribute type is deliberately not exposed. +// +// structure of the attribute type is deliberately not exposed. type Pthread_rwlock_t = struct{ F__data X__pthread_rwlock_arch_t } /* pthreadtypes.h:91:3 */ type Pthread_rwlockattr_t = struct { @@ -1803,7 +1810,8 @@ type Pthread_rwlockattr_t = struct { type Pthread_spinlock_t = int32 /* pthreadtypes.h:103:22 */ // POSIX barriers data type. The structure of the type is -// deliberately not exposed. +// +// deliberately not exposed. type Pthread_barrier_t = struct { F__ccgo_pad1 [0]uint64 F__size [32]uint8 @@ -1841,12 +1849,13 @@ type Pthread_barrierattr_t = struct { // Determine the wordsize from the preprocessor defines. // The current powerpc 32-bit Altivec ABI specifies for SVR4 ABI and EABI -// the vrsave must be at byte 248 & v20 at byte 256. So we must pad this -// correctly on 32 bit. It also insists that vecregs are only gauranteed -// 4 byte alignment so we need to use vperm in the setjmp/longjmp routines. -// We have to version the code because members like int __mask_was_saved -// in the jmp_buf will move as jmp_buf is now larger than 248 bytes. We -// cannot keep the altivec jmp_buf backward compatible with the jmp_buf. +// +// the vrsave must be at byte 248 & v20 at byte 256. So we must pad this +// correctly on 32 bit. It also insists that vecregs are only gauranteed +// 4 byte alignment so we need to use vperm in the setjmp/longjmp routines. +// We have to version the code because members like int __mask_was_saved +// in the jmp_buf will move as jmp_buf is now larger than 248 bytes. We +// cannot keep the altivec jmp_buf backward compatible with the jmp_buf. type X__jmp_buf = [64]int64 /* setjmp.h:42:18 */ // Conditional variable handling. |