X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ipc.c;h=40a905724b075414293175478fecdb0384beb672;hp=9ae2b3a09d1e1d98617e4502c16f7af2f0f54742;hb=80e46ec589d14be2fa4b0704f613a04ecb1b64c4;hpb=c141cc6915a32fb92766dc27f0df222d13f27d8b diff --git a/ipc.c b/ipc.c index 9ae2b3a0..40a90572 100644 --- a/ipc.c +++ b/ipc.c @@ -1,17 +1,42 @@ +/* + * Copyright (C) 2006-2008 Andre Noll + * + * Licensed under the GPL v2. For licencing details see COPYING. + */ + +/** \file ipc.c interprocess communication and shared memory helpers */ + #include "para.h" #include "error.h" #include "ipc.h" #include #include +#include - +/** + * define a new mutex + * + * \return the identifier for the new mutex on success, \a -E_SEM_GET + * on errors. + * + * \sa semget(2) + */ int mutex_new(void) { int ret = semget(IPC_PRIVATE, 1, IPC_CREAT | 0666); return ret < 0? -E_SEM_GET : ret; } -int mutex_remove(int id) +/** + * destroy a mutex + * + * \param id the identifier of the mutex to be destroyed + * + * \return Positive on success, \a -E_SEM_REMOVE on errors. + * + * \sa semctl(2) + */ +int mutex_destroy(int id) { int ret = semctl(id, 0, IPC_RMID); return ret < 0? -E_SEM_REMOVE : 1; @@ -19,16 +44,26 @@ int mutex_remove(int id) static void para_semop(int id, struct sembuf *sops, int num) { - if (semop(id, sops, num) >= 0) + do { + if (semop(id, sops, num) >= 0) + return; + } while (errno == EINTR); + if (errno == EIDRM) { + PARA_NOTICE_LOG("semaphore set %d was removed\n", id); return; - PARA_WARNING_LOG("semop failed (%s), retrying\n", strerror(errno)); - while (semop(id, sops, num) < 0) - ; /* nothing */ + } + PARA_EMERG_LOG("fatal semop error %s: pid %d\n", strerror(errno), + (int)getpid()); + exit(EXIT_FAILURE); } /** * lock the given mutex * + * \param id of the shared memory area to lock + * + * This function either succeeds or aborts. + * * \sa semop(2), struct misc_meta_data */ void mutex_lock(int id) @@ -51,6 +86,10 @@ void mutex_lock(int id) /** * unlock a mutex * + * \param id the identifier of the mutex + * + * This function either succeeds or aborts. + * * \sa semop(2), struct misc_meta_data */ void mutex_unlock(int id) @@ -67,7 +106,11 @@ void mutex_unlock(int id) /** * create a new shared memory area of given size - * + * + * \param size the size of the shared memory area to create + * + * \return The id of the shared memory areay on success, \a -E_SHM_GET on errors. + * * \sa shmget(2) */ int shm_new(size_t size) @@ -78,8 +121,14 @@ int shm_new(size_t size) /** * destroy the given shared memory area + * + * \param id the shared memory id + * + * \return The return value of the underlying shmctl() call on success, + * \a -E_SHM_DESTROY on errors. + * * \sa shmctl(2) - **/ + */ int shm_destroy(int id) { struct shmid_ds shm_desc; @@ -88,16 +137,35 @@ int shm_destroy(int id) } /** - * attach a shared memory area + * attach a shared memory segment * - * \sa semop(2) + * \param id the identifier of the shared memory segment to attach + * \param mode either ATTACH_RO (read only) or ATTACH_RW (read/write) + * \param result points to the attached area just attached + * + * \return positive on success, \a -E_SHM_ATTACH on errors. + * + * \sa shmat(2) */ -void *shm_attach(int id, enum shm_attach_mode mode) +int shm_attach(int id, enum shm_attach_mode mode, void **result) { - if (mode == ATTACH_RW) - return shmat(id, NULL, 0); - return shmat(id, NULL, SHM_RDONLY); + if (mode == ATTACH_RW) { + *result = shmat(id, NULL, 0); + return *result? 1 : -E_SHM_ATTACH; + } + *result = shmat(id, NULL, SHM_RDONLY); + return *result? 1 : -E_SHM_ATTACH; } + +/** + * detach a shared memory segment + * + * \param addr the address of the attached segment + * + * \return positive on success, \a -E_SHM_DETACH on errors. + * + * \sa shmdt(2) + */ int shm_detach(void *addr) { int ret = shmdt(addr);