Changeset cbb5fc7 in rtems
- Timestamp:
- 09/28/01 13:25:55 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cf282090
- Parents:
- 4009fd8
- Location:
- c/src/lib/libbsp
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i960/cvme961/ChangeLog
r4009fd8 rcbb5fc7 1 2001-09-27 Joel Sherrill <joel@OARcorp.com> 2 3 * include/bsp.h: Renamed delay() to rtems_bsp_delay(). 4 * shmsupp/lock.c: Renamed delay() to rtems_bsp_delay(). 1 5 2 6 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> -
c/src/lib/libbsp/i960/cvme961/include/bsp.h
r4009fd8 rcbb5fc7 72 72 */ 73 73 74 #define delay( microseconds ) \74 #define rtems_bsp_delay( microseconds ) \ 75 75 { register rtems_unsigned32 _delay=(microseconds); \ 76 76 register rtems_unsigned32 _tmp = 0; /* initialized to avoid warning */ \ -
c/src/lib/libbsp/i960/cvme961/shmsupp/lock.c
r4009fd8 rcbb5fc7 53 53 if ( !(oldlock & SHM_LOCK_VALUE) ) 54 54 return; 55 delay( 28 ); /* delay 28 microseconds */55 rtems_bsp_delay( 28 ); /* delay 28 microseconds */ 56 56 } 57 57 } -
c/src/lib/libbsp/no_cpu/no_bsp/ChangeLog
r4009fd8 rcbb5fc7 1 2001-09-27 Joel Sherrill <joel@OARcorp.com> 2 3 * include/bsp.h: Renamed delay() to rtems_bsp_delay(). 4 * shmsupp/lock.c: Renamed delay() to rtems_bsp_delay(). 1 5 2 6 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> -
c/src/lib/libbsp/no_cpu/no_bsp/include/bsp.h
r4009fd8 rcbb5fc7 67 67 */ 68 68 69 #define delay( microseconds ) \69 #define rtems_bsp_delay( microseconds ) \ 70 70 { \ 71 71 } -
c/src/lib/libbsp/no_cpu/no_bsp/shmsupp/lock.c
r4009fd8 rcbb5fc7 63 63 64 64 if ( lock_value ) 65 delay( 10 ); /* approximately 10 microseconds */65 rtems_bsp_delay( 10 ); /* approximately 10 microseconds */ 66 66 } 67 67 }
Note: See TracChangeset
for help on using the changeset viewer.