Changeset 32
- Timestamp:
- 10/16/08 23:06:32 (4 years ago)
- Files:
-
- branches/D1.0/src/common/core/thread.d (modified) (1 diff)
- branches/D1.0/src/common/posix.mak (modified) (2 diffs)
- trunk/src/common/core/thread.d (modified) (1 diff)
- trunk/src/common/posix.mak (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/D1.0/src/common/core/thread.d
r31 r32 157 157 import stdc.posix.time; 158 158 import stdc.errno; 159 160 extern (C) int getErrno(); 159 161 160 162 version( GNU ) branches/D1.0/src/common/posix.mak
r29 r32 72 72 core/bitmanip.o \ 73 73 core/exception.o \ 74 core/memory .o \74 core/memory_.o \ 75 75 core/runtime.o \ 76 76 core/thread.o … … 111 111 112 112 core/bitmanip.o : core/bitmanip.d 113 $(DC) -c $(DFLAGS) bitmanip.d -of$@113 $(DC) -c $(DFLAGS) core/bitmanip.d -of$@ 114 114 115 ### memory 116 core/memory_.o : core/memory.d 117 $(DC) -c $(DFLAGS) -Hf$*.di $< -of$@ 115 118 ### thread 116 119 117 120 core/thread.o : core/thread.d 118 $(DC) -c $(DFLAGS) -d -Hf$*.di thread.d -of$@121 $(DC) -c $(DFLAGS) -d -Hf$*.di core/thread.d -of$@ 119 122 120 123 ###################################################### trunk/src/common/core/thread.d
r31 r32 158 158 import stdc.errno; 159 159 160 extern (C) int getErrno(); 160 161 version( GNU ) 161 162 { trunk/src/common/posix.mak
r29 r32 72 72 core/bitmanip.o \ 73 73 core/exception.o \ 74 core/memory .o \74 core/memory_.o \ 75 75 core/runtime.o \ 76 76 core/thread.o … … 111 111 112 112 core/bitmanip.o : core/bitmanip.d 113 $(DC) -c $(DFLAGS) bitmanip.d -of$@ 113 $(DC) -c $(DFLAGS) core/bitmanip.d -of$@ 114 115 ### memory 116 117 core/memory_.o : core/memory.d 118 $(DC) -c $(DFLAGS) -Hf$*.di $< -of$@ 114 119 115 120 ### thread 116 121 117 122 core/thread.o : core/thread.d 118 $(DC) -c $(DFLAGS) -d -Hf$*.di thread.d -of$@123 $(DC) -c $(DFLAGS) -d -Hf$*.di core/thread.d -of$@ 119 124 120 125 ######################################################
