Changeset 1d72f03 in rtems
- Timestamp:
- 06/22/16 13:37:13 (7 years ago)
- Branches:
- 5, master
- Children:
- 254dc82
- Parents:
- 9f61ad60
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/22/16 13:37:13)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/24/16 12:44:31)
- Location:
- cpukit/score/include/rtems/score
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/include/rtems/score/prioritybitmapimpl.h
r9f61ad60 r1d72f03 62 62 _CPU_Bitfield_Find_first_bit( value, bit_number ); 63 63 #elif defined(__GNUC__) 64 bit_number = __builtin_clz( value ) - __SIZEOF_INT__ * __CHAR_BIT__ + 16; 64 bit_number = (unsigned int) __builtin_clz( value ) 65 - __SIZEOF_INT__ * __CHAR_BIT__ + 16; 65 66 #else 66 67 if ( value < 0x100 ) { -
cpukit/score/include/rtems/score/schedulerimpl.h
r9f61ad60 r1d72f03 750 750 OBJECTS_FAKE_OBJECTS_SCHEDULERS, 751 751 _Objects_Local_node, 752 scheduler_index + 1752 (uint16_t) ( scheduler_index + 1 ) 753 753 ); 754 754 } -
cpukit/score/include/rtems/score/timestamp.h
r9f61ad60 r1d72f03 283 283 bintime2timespec( _time, &_ts ); 284 284 285 return _ts.tv_nsec;285 return (uint32_t) _ts.tv_nsec; 286 286 } 287 287 -
cpukit/score/include/rtems/score/watchdogimpl.h
r9f61ad60 r1d72f03 319 319 320 320 ticks <<= WATCHDOG_BITS_FOR_1E9_NANOSECONDS; 321 ticks |= ts->tv_nsec;321 ticks |= (uint32_t) ts->tv_nsec; 322 322 323 323 return ticks;
Note: See TracChangeset
for help on using the changeset viewer.