Skip to content

Commit 4660460

Browse files
committed
aix(powerpc64): add system header comments
1 parent 78b30b5 commit 4660460

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
@@ -405,6 +405,7 @@ cfg_if! {
405405
}
406406
}
407407

408+
// pthread.h
408409
pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
409410
__mt_word: [0, 2, 0, 0, 0, 0, 0, 0],
410411
};
@@ -414,11 +415,11 @@ pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
414415
pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
415416
__rw_word: [2, 0, 0, 0, 0, 0, 0, 0, 0, 0],
416417
};
417-
418418
pub const PTHREAD_ONCE_INIT: pthread_once_t = pthread_once_t {
419419
__on_word: [0, 0, 0, 0, 0, 2, 0, 0, 0],
420420
};
421421

422+
// sys/resource.h
422423
pub const RLIM_INFINITY: c_ulong = 0x7fffffffffffffff;
423424

424425
extern "C" {

0 commit comments

Comments
 (0)