Changeset 3dd3ae6 in rtems-schedsim
- Timestamp:
- 05/14/14 13:24:36 (10 years ago)
- Branches:
- master
- Children:
- deadc9a
- Parents:
- 55b4c3e
- git-author:
- Joel Sherrill <joel.sherrill@…> (05/14/14 13:24:36)
- git-committer:
- Joel Sherrill <joel.sherrill@…> (05/14/14 14:41:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedsim/rtems/sched_cpu/sys/cpuset.h
r55b4c3e r3dd3ae6 3 3 * and it is defined in Makefile.am` 4 4 */ 5 6 #ifndef __SCHEDSIM_SYS_CPUSET_h 7 #define __SCHEDSIM_SYS_CPUSET_h 8 5 9 #include <sched.h> 6 10 #ifndef __CPU_ZERO_S … … 8 12 #endif 9 13 14 #if defined(__gnu_linux__) 15 /* This was not defined as of at least CentOS 6.x */ 16 /* copy src set to dest set */ 17 static __inline void CPU_COPY( cpu_set_t *dest, const cpu_set_t *src ) 18 { 19 *dest = *src; 20 } 21 #endif 22 23 #endif
Note: See TracChangeset
for help on using the changeset viewer.