Skip to content

Commit df65648

Browse files
dybucctgross35
authored andcommitted
aix(powerpc64): add system header comments
1 parent 7ce8d44 commit df65648

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
@@ -417,6 +417,7 @@ cfg_if! {
417417
}
418418
}
419419

420+
// pthread.h
420421
pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
421422
__mt_word: [0, 2, 0, 0, 0, 0, 0, 0],
422423
};
@@ -426,11 +427,11 @@ pub const PTHREAD_COND_INITIALIZER: pthread_cond_t = pthread_cond_t {
426427
pub const PTHREAD_RWLOCK_INITIALIZER: pthread_rwlock_t = pthread_rwlock_t {
427428
__rw_word: [2, 0, 0, 0, 0, 0, 0, 0, 0, 0],
428429
};
429-
430430
pub const PTHREAD_ONCE_INIT: pthread_once_t = pthread_once_t {
431431
__on_word: [0, 0, 0, 0, 0, 2, 0, 0, 0],
432432
};
433433

434+
// sys/resource.h
434435
pub const RLIM_INFINITY: c_ulong = 0x7fffffffffffffff;
435436

436437
extern "C" {

0 commit comments

Comments
 (0)