Deleted Added
full compact
shm.h (132943) shm.h (147078)
1/*
1/*
2 * Copyright (c) 2000-2003 Sendmail, Inc. and its suppliers.
2 * Copyright (c) 2000-2003, 2005 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
3 * All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 * $Id: shm.h,v 1.10 2003/05/17 18:34:54 ca Exp $
9 * $Id: shm.h,v 1.11 2005/01/13 22:57:04 ca Exp $
10 */
11
12#ifndef SM_SHM_H
13# define SM_SHM_H
14
15# if SM_CONF_SHM
16# include <sys/types.h>
17# include <sys/ipc.h>

--- 5 unchanged lines hidden (view full) ---

23# define SM_SHM_KEY ((key_t) 42)
24
25/* return value for failed shmget() */
26# define SM_SHM_NULL ((void *) -1)
27# define SM_SHM_NO_ID (-2)
28
29extern void *sm_shmstart __P((key_t, int , int , int *, bool));
30extern int sm_shmstop __P((void *, int, bool));
10 */
11
12#ifndef SM_SHM_H
13# define SM_SHM_H
14
15# if SM_CONF_SHM
16# include <sys/types.h>
17# include <sys/ipc.h>

--- 5 unchanged lines hidden (view full) ---

23# define SM_SHM_KEY ((key_t) 42)
24
25/* return value for failed shmget() */
26# define SM_SHM_NULL ((void *) -1)
27# define SM_SHM_NO_ID (-2)
28
29extern void *sm_shmstart __P((key_t, int , int , int *, bool));
30extern int sm_shmstop __P((void *, int, bool));
31extern int sm_shmsetowner __P((int, uid_t, gid_t, mode_t));
31
32
33/* for those braindead systems... (e.g., SunOS 4) */
34# ifndef SHM_R
35# define SHM_R 0400
36# endif /* SHM_R */
37# ifndef SHM_W
38# define SHM_W 0200
39# endif /* SHM_W */
40
41# endif /* SM_CONF_SHM */
42#endif /* ! SM_SHM_H */
32
33
34/* for those braindead systems... (e.g., SunOS 4) */
35# ifndef SHM_R
36# define SHM_R 0400
37# endif /* SHM_R */
38# ifndef SHM_W
39# define SHM_W 0200
40# endif /* SHM_W */
41
42# endif /* SM_CONF_SHM */
43#endif /* ! SM_SHM_H */