Changes in / [a094f13:7df201c]
- Files:
-
- 2 edited
-
libcfa/src/concurrency/kernel_private.hfa (modified) (1 diff)
-
tests/pybin/tools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel_private.hfa
ra094f13 r7df201c 34 34 static inline void WakeThread( thread_desc * thrd ) { 35 35 if( !thrd ) return; 36 37 verify(thrd->state == Inactive);38 36 39 37 disable_interrupts(); -
tests/pybin/tools.py
ra094f13 r7df201c 343 343 # make a directory for this test 344 344 # mkdir makes the parent directory only so add a dummy 345 mkdir(os.path.join(dst, name))345 mkdir(os.path.join(dst, "dir")) 346 346 347 347 # moves the files
Note:
See TracChangeset
for help on using the changeset viewer.