Skip to content

Commit 588fdee

Browse files
committed
aix(powerpc64): add system header comments
1 parent df6e734 commit 588fdee

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/unix/aix/powerpc64.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ cfg_if! {
435435
}
436436
}
437437

438+
// pthread.h
438439
pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
439440
__mt_word: [0, 2, 0, 0, 0, 0, 0, 0],
440441
};
@@ -444,11 +445,11 @@ pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
444445
pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
445446
__rw_word: [2, 0, 0, 0, 0, 0, 0, 0, 0, 0],
446447
};
447-
448448
pub const PTHREAD_ONCE_INIT: pthread_once_t = pthread_once_t {
449449
__on_word: [0, 0, 0, 0, 0, 2, 0, 0, 0],
450450
};
451451

452+
// sys/resource.h
452453
pub const RLIM_INFINITY: c_ulong = 0x7fffffffffffffff;
453454

454455
extern "C" {

0 commit comments

Comments
 (0)