Changeset 3a85d03d in rtems
- Timestamp:
- 01/28/98 15:39:30 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b4767da
- Parents:
- 16fc1951
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/unix/cpu.c
r16fc1951 r3a85d03d 984 984 help.val = 1; 985 985 status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); 986 #elif defined(hpux) || defined(__linux__) 986 #elif defined(__linux__) 987 union semun help; 988 989 help.val = 1; 990 status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); 991 #elif defined(hpux) 987 992 status = semctl( _CPU_SHM_Semid, i, SETVAL, 1 ); 988 993 #else -
cpukit/score/cpu/unix/cpu.c
r16fc1951 r3a85d03d 984 984 help.val = 1; 985 985 status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); 986 #elif defined(hpux) || defined(__linux__) 986 #elif defined(__linux__) 987 union semun help; 988 989 help.val = 1; 990 status = semctl( _CPU_SHM_Semid, i, SETVAL, help ); 991 #elif defined(hpux) 987 992 status = semctl( _CPU_SHM_Semid, i, SETVAL, 1 ); 988 993 #else
Note: See TracChangeset
for help on using the changeset viewer.