mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-21 02:41:04 +00:00
* GSWeb.framework/GSWApplication.h
* GSWeb.framework/GSWDeployedBundle.h: Replace objc_thread_t with NSThread * for caching the thread in the instance variable. * GSWeb.framework/Makefile.postamble: Remove config.h during make distclean. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18666 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f4eeb18a26
commit
a59610f0be
4 changed files with 14 additions and 5 deletions
|
@ -1,3 +1,12 @@
|
|||
2004-02-25 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* GSWeb.framework/GSWApplication.h
|
||||
* GSWeb.framework/GSWDeployedBundle.h: Replace objc_thread_t
|
||||
with NSThread * for caching the thread in the instance variable.
|
||||
|
||||
* GSWeb.framework/Makefile.postamble: Remove config.h during
|
||||
make distclean.
|
||||
|
||||
2004-02-17 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* GSWeb.framework/GSWApplication.m
|
||||
|
|
|
@ -68,12 +68,12 @@ extern BOOL WOStrictFlag;
|
|||
NSRecursiveLock* _selfLock;
|
||||
#ifndef NDEBUG
|
||||
int _selfLockn;
|
||||
objc_thread_t _selfLock_thread_id;
|
||||
NSThread *_selfLock_thread_id;
|
||||
#endif
|
||||
NSLock* _globalLock;
|
||||
#ifndef NDEBUG
|
||||
int _globalLockn;
|
||||
objc_thread_t _globalLock_thread_id;
|
||||
NSThread *_globalLock_thread_id;
|
||||
#endif
|
||||
NSAutoreleasePool* _globalAutoreleasePool;
|
||||
unsigned _pageCacheSize;
|
||||
|
|
|
@ -48,8 +48,8 @@
|
|||
NSRecursiveLock* _selfLock;
|
||||
#ifndef NDEBUG
|
||||
int _selfLockn;
|
||||
objc_thread_t _selfLock_thread_id;
|
||||
objc_thread_t _creation_thread_id;
|
||||
NSThread *_selfLock_thread_id;
|
||||
NSThread *_creation_thread_id;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ after-install:: install-WO-headers
|
|||
|
||||
# Things to do after distcleaning
|
||||
after-distclean::
|
||||
rm -rf Makefile.preamble
|
||||
rm -f Makefile.preamble $(GNUSTEP_TARGET_DIR)/config.h
|
||||
|
||||
# Things to do before checking
|
||||
# before-check::
|
||||
|
|
Loading…
Reference in a new issue