summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/libc/signal/signal_linux_ppc64le.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/modernc.org/libc/signal/signal_linux_ppc64le.go')
-rw-r--r--vendor/modernc.org/libc/signal/signal_linux_ppc64le.go48
1 files changed, 31 insertions, 17 deletions
diff --git a/vendor/modernc.org/libc/signal/signal_linux_ppc64le.go b/vendor/modernc.org/libc/signal/signal_linux_ppc64le.go
index 9a05772b2..41b5c9c18 100644
--- a/vendor/modernc.org/libc/signal/signal_linux_ppc64le.go
+++ b/vendor/modernc.org/libc/signal/signal_linux_ppc64le.go
@@ -582,7 +582,8 @@ const ( /* siginfo-consts.h:189:1: */
// Architecture-specific adjustments to siginfo_t.
// Values for `si_code'. Positive values are reserved for kernel-generated
-// signals.
+//
+// signals.
const ( /* siginfo-consts.h:35:1: */
SI_ASYNCNL = -60 // Sent by asynch name lookup completion.
SI_DETHREAD = -7 // Sent by execve killing subsidiary
@@ -1363,7 +1364,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 */
@@ -1374,8 +1376,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 */
// Seconds since the Epoch, visible to user code when time_t is too
@@ -1475,7 +1478,8 @@ type X__sig_atomic_t = int32 /* types.h:214:13 */
// Never include this file directly; use <sys/types.h> instead.
// An integral type that can be modified atomically, without the
-// possibility of a signal arriving in the middle of the operation.
+//
+// possibility of a signal arriving in the middle of the operation.
type Sig_atomic_t = X__sig_atomic_t /* sig_atomic_t.h:8:24 */
type X__sigset_t = struct{ F__val [16]uint64 } /* __sigset_t.h:8:3 */
@@ -1543,7 +1547,8 @@ type Uid_t = X__uid_t /* signal.h:46:17 */
// 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
@@ -2333,20 +2338,23 @@ type Gregset_t = [48]uint64 /* ucontext.h:93:23 */
type Fpregset_t = [33]float64 /* ucontext.h:94:16 */
// Container for Altivec/VMX Vector Status and Control Register. Only 32-bits
-// but can only be copied to/from a 128-bit vector register. So we allocated
-// a whole quadword speedup save/restore.
+//
+// but can only be copied to/from a 128-bit vector register. So we allocated
+// a whole quadword speedup save/restore.
type X_libc_vscr = struct {
Fvscr_word uint32
F__pad [3]uint32
} /* ucontext.h:99:9 */
// Container for Altivec/VMX Vector Status and Control Register. Only 32-bits
-// but can only be copied to/from a 128-bit vector register. So we allocated
-// a whole quadword speedup save/restore.
+//
+// but can only be copied to/from a 128-bit vector register. So we allocated
+// a whole quadword speedup save/restore.
type Vscr_t = X_libc_vscr /* ucontext.h:108:3 */
// Container for Altivec/VMX registers and status.
-// Must to be aligned on a 16-byte boundary.
+//
+// Must to be aligned on a 16-byte boundary.
type X_libc_vrstate = struct {
Fvrregs [32][4]uint32
Fvscr Vscr_t
@@ -2355,7 +2363,8 @@ type X_libc_vrstate = struct {
} /* ucontext.h:112:9 */
// Container for Altivec/VMX registers and status.
-// Must to be aligned on a 16-byte boundary.
+//
+// Must to be aligned on a 16-byte boundary.
type Vrregset_t = X_libc_vrstate /* ucontext.h:118:3 */
type Mcontext_t = struct {
@@ -2689,18 +2698,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
@@ -2717,7 +2729,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 {
@@ -2729,7 +2742,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