Changeset f2545552 in rtems for c/src/exec/score/cpu/unix/cpu.c
- Timestamp:
- 04/22/97 19:57:02 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e0de6ef
- Parents:
- e71ce071
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/unix/cpu.c
re71ce071 rf2545552 25 25 #endif 26 26 27 #if defined( linux)27 #if defined(__linux__) 28 28 #define MALLOC_0_RETURNS_NULL 29 29 #endif … … 874 874 help.val = 1; 875 875 status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); 876 #endif 877 #if defined(hpux) 876 #elif defined(hpux) || defined(__linux__) 878 877 status = semctl( _CPU_SHM_Semid, i, SETVAL, 1 ); 878 #else 879 #error "Not a supported unix variant" 879 880 #endif 880 881
Note: See TracChangeset
for help on using the changeset viewer.