diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-10-18 11:46:24 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-10-18 11:46:24 +0000 |
commit | e5209c56658d0173665f46b39f32b14980fd5bf6 (patch) | |
tree | 6ccc543beaffb3ef51cb3952ddc2d241260234c8 /sys/posix4 | |
parent | 153abf782e100cbbde6302049d288abd03521845 (diff) | |
download | FreeBSD-src-e5209c56658d0173665f46b39f32b14980fd5bf6.zip FreeBSD-src-e5209c56658d0173665f46b39f32b14980fd5bf6.tar.gz |
Const-qualify ksem_timedwait's parameter abstime as it's only passed in.
Diffstat (limited to 'sys/posix4')
-rw-r--r-- | sys/posix4/_semaphore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/posix4/_semaphore.h b/sys/posix4/_semaphore.h index a7bd5d8..df3c5da 100644 --- a/sys/posix4/_semaphore.h +++ b/sys/posix4/_semaphore.h @@ -58,7 +58,7 @@ int ksem_close(semid_t id); int ksem_post(semid_t id); int ksem_wait(semid_t id); int ksem_trywait(semid_t id); -int ksem_timedwait(semid_t id, struct timespec *abstime); +int ksem_timedwait(semid_t id, const struct timespec *abstime); int ksem_init(semid_t *idp, unsigned int value); int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode, unsigned int value); |