--- freem/src/shmmgr.h 2025/05/09 19:44:50 1.6 +++ freem/src/shmmgr.h 2025/05/15 04:14:20 1.7 @@ -1,5 +1,5 @@ /* - * $Id: shmmgr.h,v 1.6 2025/05/09 19:44:50 snw Exp $ + * $Id: shmmgr.h,v 1.7 2025/05/15 04:14:20 snw Exp $ * shared memory manager data structures * * @@ -24,6 +24,9 @@ * along with FreeM. If not, see . * * $Log: shmmgr.h,v $ + * Revision 1.7 2025/05/15 04:14:20 snw + * Remove old SEMK_ macros since ftok is now used throughout to determine semaphore keys + * * Revision 1.6 2025/05/09 19:44:50 snw * Begin shm rework * @@ -68,11 +71,6 @@ #define SHMS_GET_ERR 0 #define SHMS_ATTACH_ERR -1 -#define SEMK_SHM 0xBBDD21 -#define SEMK_LOCKTAB 0xBBDD22 -#define SEMK_JOBTAB 0xBBDD23 -#define SEMK_TP 0xBBDD24 - #define SHMALIGN(a) (void *) (((unsigned long) a + sysconf (_SC_PAGESIZE)) & ~(sysconf (_SC_PAGESIZE) - 1)) /* The following macros were borrowed from Reference Standard M