Changeset 47352 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Jul 23, 2013 4:19:20 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87497
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/threadctxhooks-r0drv-linux.c
r47229 r47352 52 52 uint32_t volatile u32Magic; 53 53 /** The thread handle (owner) for which the context-hooks are registered. */ 54 RT THREADhOwner;54 RTNATIVETHREAD hOwner; 55 55 /** The preemption notifier object. */ 56 56 struct preempt_notifier hPreemptNotifier; … … 63 63 /** The thread-context operations. */ 64 64 struct preempt_ops hPreemptOps; 65 /** The reference count for this object. */ 66 uint32_t volatile cRefs; 65 67 } RTTHREADCTXINT, *PRTTHREADCTXINT; 66 68 … … 109 111 110 112 /** 111 * Worker function for RTThreadCtxHooks(Deregister| Destroy)().113 * Worker function for RTThreadCtxHooks(Deregister|Release)(). 112 114 * 113 115 * @param pThis Pointer to the internal thread-context object. … … 131 133 return VERR_NO_MEMORY; 132 134 pThis->u32Magic = RTTHREADCTXINT_MAGIC; 133 pThis->hOwner = RTThread Self();135 pThis->hOwner = RTThreadNativeSelf(); 134 136 pThis->fRegistered = false; 135 137 preempt_notifier_init(&pThis->hPreemptNotifier, &pThis->hPreemptOps); 138 pThis->cRefs = 1; 136 139 137 140 *phThreadCtx = pThis; … … 141 144 142 145 143 RTDECL( void) RTThreadCtxHooksDestroy(RTTHREADCTX hThreadCtx)146 RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx) 144 147 { 145 148 /* 146 149 * Validate input. 147 150 */ 151 uint32_t cRefs; 152 PRTTHREADCTXINT pThis = hThreadCtx; 153 AssertPtr(pThis); 154 AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), 155 UINT32_MAX); 156 157 cRefs = ASMAtomicIncU32(&pThis->cRefs); 158 Assert(cRefs < UINT32_MAX / 2); 159 return cRefs; 160 } 161 RT_EXPORT_SYMBOL(RTThreadCtxHooksRetain); 162 163 164 165 RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx) 166 { 167 /* 168 * Validate input. 169 */ 170 uint32_t cRefs; 148 171 PRTTHREADCTXINT pThis = hThreadCtx; 149 172 if (pThis == NIL_RTTHREADCTX) 150 return ;151 AssertPtr(pThis); 152 AssertMsgReturn Void(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis));153 Assert(pThis->hOwner == RTThreadSelf());173 return 0; 174 AssertPtr(pThis); 175 AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), 176 UINT32_MAX); 154 177 Assert(RTThreadPreemptIsEnabled(NIL_RTTHREAD)); 155 178 156 /* 157 * If there's still a registered thread-context hook, deregister it now before destroying the object. 158 */ 159 if (pThis->fRegistered) 160 rtThreadCtxHooksDeregister(pThis); 161 162 /* 163 * Paranoia... but since these are ring-0 threads we can't be too careful. 164 */ 165 Assert(!pThis->fRegistered); 166 Assert(!pThis->hPreemptOps.sched_out); 167 Assert(!pThis->hPreemptOps.sched_in); 168 169 /* 170 * Destroy the object. 171 */ 172 ASMAtomicWriteU32(&pThis->u32Magic, ~RTTHREADCTXINT_MAGIC); 173 RTMemFree(pThis); 174 } 175 RT_EXPORT_SYMBOL(RTThreadCtxHooksDestroy); 179 cRefs = ASMAtomicDecU32(&pThis->cRefs); 180 if (!cRefs) 181 { 182 /* 183 * If there's still a registered thread-context hook, deregister it now before destroying the object. 184 */ 185 if (pThis->fRegistered) 186 rtThreadCtxHooksDeregister(pThis); 187 188 /* 189 * Paranoia... but since these are ring-0 threads we can't be too careful. 190 */ 191 Assert(!pThis->fRegistered); 192 Assert(!pThis->hPreemptOps.sched_out); 193 Assert(!pThis->hPreemptOps.sched_in); 194 195 ASMAtomicWriteU32(&pThis->u32Magic, ~RTTHREADCTXINT_MAGIC); 196 RTMemFree(pThis); 197 printk("freed pThis=%p\n", pThis); 198 } 199 else 200 Assert(cRefs < UINT32_MAX / 2); 201 202 return cRefs; 203 } 204 RT_EXPORT_SYMBOL(RTThreadCtxHooksRelease); 176 205 177 206 … … 187 216 AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), 188 217 VERR_INVALID_HANDLE); 189 Assert(pThis->hOwner == RTThread Self());218 Assert(pThis->hOwner == RTThreadNativeSelf()); 190 219 Assert(!pThis->hPreemptOps.sched_out); 191 220 Assert(!pThis->hPreemptOps.sched_in); … … 217 246 AssertMsgReturn(pThis->u32Magic == RTTHREADCTXINT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), 218 247 VERR_INVALID_HANDLE); 219 Assert(pThis->hOwner == RTThread Self());248 Assert(pThis->hOwner == RTThreadNativeSelf()); 220 249 Assert(pThis->fRegistered); 221 250 … … 238 267 239 268 240 RTDECL( void) RTThreadCtxHooksDestroy(RTTHREADCTX hThreadCtx)269 RTDECL(uint32_t) RTThreadCtxHooksRetain(RTTHREADCTX hThreadCtx) 241 270 { 242 271 NOREF(hThreadCtx); 243 } 244 RT_EXPORT_SYMBOL(RTThreadCtxHooksDestroy); 272 return UINT32_MAX; 273 } 274 RT_EXPORT_SYMBOL(RTThreadCtxHooksRetain); 275 276 277 RTDECL(uint32_t) RTThreadCtxHooksRelease(RTTHREADCTX hThreadCtx) 278 { 279 NOREF(hThreadCtx); 280 return UINT32_MAX; 281 } 282 RT_EXPORT_SYMBOL(RTThreadCtxHooksRelease); 245 283 246 284
Note:
See TracChangeset
for help on using the changeset viewer.