|
|
3.14a
#ifndef _XPSEM_H_
#define _XPSEM_H_
/*
* $Id: xpsem.h,v 1.1.1.1 2018/04/24 16:41:24 root Exp $
*
* semaphore.h: POSIX 1003.1b semaphores
*/
/*-
* Copyright (c) 1996, 1997
* HD Associates, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by HD Associates, Inc
* 4. Neither the name of the author nor the names of any co-contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY HD ASSOCIATES AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL HD ASSOCIATES OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD: src/sys/posix4/semaphore.h,v 1.6 2000/01/20 07:55:42 jasone Exp $
*/
#include <limits.h>
#include <sys/types.h>
#include <fcntl.h>
#include <pthread.h>
/* Opaque type definition. */
struct xp_sem;
typedef struct xp_sem *xp_sem_t;
#define XP_SEM_FAILED ((xp_sem_t *)0)
#define XP_SEM_VALUE_MAX UINT_MAX
#if defined(__solaris__)
typedef unsigned int u_int32_t;
#endif
#if defined(__cplusplus)
extern "C" {
#endif
int xp_sem_init (xp_sem_t *, int, unsigned int);
int xp_sem_destroy (xp_sem_t *);
xp_sem_t *xp_sem_open (const char *, int, ...);
int xp_sem_close (xp_sem_t *);
int xp_sem_unlink (const char *);
int xp_sem_wait (xp_sem_t *);
int xp_sem_trywait (xp_sem_t *);
int xp_sem_post (xp_sem_t *);
int xp_sem_getvalue (xp_sem_t *, int *);
int xp_sem_setvalue (xp_sem_t *, int);
int xp_sem_timedwait (xp_sem_t *sem, const struct timespec *abs_timeout);
#if defined(__cplusplus)
}
#endif
/*
* $Id: xpsem.h,v 1.1.1.1 2018/04/24 16:41:24 root Exp $
*/
/* Begin thread_private.h kluge */
/*
* These come out of (or should go into) thread_private.h - rather than have
* to copy (or symlink) the files from the source tree these definitions are
* inlined here. Obviously these go away when this module is part of libc.
*/
struct xp_sem {
#define XP_SEM_MAGIC ((u_int32_t) 0x09fa4012)
u_int32_t magic;
pthread_mutex_t lock;
pthread_cond_t gtzero;
u_int32_t count;
u_int32_t nwaiters;
};
extern pthread_once_t _thread_init_once;
extern int _threads_initialized;
extern void _thread_init (void);
#define THREAD_INIT() \
(void) pthread_once(&_thread_init_once, _thread_init)
#define THREAD_SAFE() \
(_threads_initialized != 0)
#define _SEM_CHECK_VALIDITY(sem) \
if (sem==NULL || (*(sem))->magic != XP_SEM_MAGIC) { \
errno = EINVAL; \
retval = -1; \
goto RETURN; \
}
struct pthread_rwlockattr {
int pshared;
};
/* End thread_private.h kluge */
#endif /* _XPSEM_H_ */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.