Changeset 21337 in vbox for trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
- Timestamp:
- Jul 7, 2009 2:58:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49685
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r13770 r21337 42 42 #include "internal/magics.h" 43 43 44 44 45 /******************************************************************************* 45 46 * Structures and Typedefs * … … 81 82 return VINF_SUCCESS; 82 83 } 84 RT_EXPORT_SYMBOL(RTSpinlockCreate); 83 85 84 86 … … 101 103 return VINF_SUCCESS; 102 104 } 105 RT_EXPORT_SYMBOL(RTSpinlockDestroy); 103 106 104 107 … … 112 115 spin_lock_irqsave(&pSpinlockInt->Spinlock, pTmp->flFlags); 113 116 } 117 RT_EXPORT_SYMBOL(RTSpinlockAcquireNoInts); 114 118 115 119 … … 123 127 spin_unlock_irqrestore(&pSpinlockInt->Spinlock, pTmp->flFlags); 124 128 } 129 RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts); 125 130 126 131 … … 134 139 spin_lock(&pSpinlockInt->Spinlock); 135 140 } 141 RT_EXPORT_SYMBOL(RTSpinlockAcquire); 136 142 137 143 … … 145 151 spin_unlock(&pSpinlockInt->Spinlock); 146 152 } 153 RT_EXPORT_SYMBOL(RTSpinlockRelease); 147 154 148 #if defined(IN_GUEST_R0) && defined(IN_MODULE)149 EXPORT_SYMBOL(RTSpinlockCreate);150 EXPORT_SYMBOL(RTSpinlockDestroy);151 EXPORT_SYMBOL(RTSpinlockAcquireNoInts);152 EXPORT_SYMBOL(RTSpinlockReleaseNoInts);153 #endif
Note:
See TracChangeset
for help on using the changeset viewer.