~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/backend/port/qnx4/ipc.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * ipc.h
 
4
 *        System V IPC Emulation
 
5
 *
 
6
 * Copyright (c) 1999, repas AEG Automation GmbH
 
7
 *
 
8
 *
 
9
 * IDENTIFICATION
 
10
 *        $PostgreSQL: pgsql/src/backend/port/qnx4/ipc.h,v 1.7 2003-11-29 19:51:54 pgsql Exp $
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
 
 
15
#ifndef _SYS_IPC_H
 
16
#define _SYS_IPC_H
 
17
 
 
18
/* Common IPC definitions. */
 
19
/* Mode bits. */
 
20
#define IPC_CREAT       0001000         /* create entry if key doesn't exist */
 
21
#define IPC_EXCL        0002000         /* fail if key exists */
 
22
#define IPC_NOWAIT      0004000         /* error if request must wait */
 
23
 
 
24
/* Keys. */
 
25
#define IPC_PRIVATE (key_t)0    /* private key */
 
26
 
 
27
/* Control Commands. */
 
28
#define IPC_RMID        0                       /* remove identifier */
 
29
#define IPC_STAT        1                       /* get shm status */
 
30
 
 
31
#endif   /* _SYS_IPC_H */