Changeset 36244 in vbox for trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
- Timestamp:
- Mar 9, 2011 7:31:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
r36242 r36244 141 141 int rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread) 142 142 { 143 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 4) 143 144 struct task_struct *NativeThread; 144 145 … … 152 153 *pNativeThread = (RTNATIVETHREAD)NativeThread; 153 154 return VINF_SUCCESS; 155 #else 156 return VERR_NOT_IMPLEMENTED; 157 #endif 154 158 }
Note:
See TracChangeset
for help on using the changeset viewer.