Changeset d6ba279 in rtems
- Timestamp:
- Apr 7, 1997, 9:24:02 PM (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 759a9d9
- Parents:
- 0b50855
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/unix/cpu.c
r0b50855 rd6ba279 818 818 key_t shm_key; 819 819 key_t sem_key; 820 int status ;820 int status = 0; /* to avoid unitialized warnings */ 821 821 int shm_size; 822 822 -
c/src/lib/libbsp/i960/cvme961/include/bsp.h
r0b50855 rd6ba279 63 63 #define delay( microseconds ) \ 64 64 { register rtems_unsigned32 _delay=(microseconds); \ 65 register rtems_unsigned32 _tmp ;\65 register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \ 66 66 asm volatile( "0: \ 67 67 remo 3,31,%0 ; \ -
cpukit/score/cpu/unix/cpu.c
r0b50855 rd6ba279 818 818 key_t shm_key; 819 819 key_t sem_key; 820 int status ;820 int status = 0; /* to avoid unitialized warnings */ 821 821 int shm_size; 822 822
Note: See TracChangeset
for help on using the changeset viewer.