mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 19:21:23 +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>
|
2004-02-17 David Ayers <d.ayers@inode.at>
|
||||||
|
|
||||||
* GSWeb.framework/GSWApplication.m
|
* GSWeb.framework/GSWApplication.m
|
||||||
|
|
|
@ -68,12 +68,12 @@ extern BOOL WOStrictFlag;
|
||||||
NSRecursiveLock* _selfLock;
|
NSRecursiveLock* _selfLock;
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
int _selfLockn;
|
int _selfLockn;
|
||||||
objc_thread_t _selfLock_thread_id;
|
NSThread *_selfLock_thread_id;
|
||||||
#endif
|
#endif
|
||||||
NSLock* _globalLock;
|
NSLock* _globalLock;
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
int _globalLockn;
|
int _globalLockn;
|
||||||
objc_thread_t _globalLock_thread_id;
|
NSThread *_globalLock_thread_id;
|
||||||
#endif
|
#endif
|
||||||
NSAutoreleasePool* _globalAutoreleasePool;
|
NSAutoreleasePool* _globalAutoreleasePool;
|
||||||
unsigned _pageCacheSize;
|
unsigned _pageCacheSize;
|
||||||
|
|
|
@ -48,8 +48,8 @@
|
||||||
NSRecursiveLock* _selfLock;
|
NSRecursiveLock* _selfLock;
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
int _selfLockn;
|
int _selfLockn;
|
||||||
objc_thread_t _selfLock_thread_id;
|
NSThread *_selfLock_thread_id;
|
||||||
objc_thread_t _creation_thread_id;
|
NSThread *_creation_thread_id;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ after-install:: install-WO-headers
|
||||||
|
|
||||||
# Things to do after distcleaning
|
# Things to do after distcleaning
|
||||||
after-distclean::
|
after-distclean::
|
||||||
rm -rf Makefile.preamble
|
rm -f Makefile.preamble $(GNUSTEP_TARGET_DIR)/config.h
|
||||||
|
|
||||||
# Things to do before checking
|
# Things to do before checking
|
||||||
# before-check::
|
# before-check::
|
||||||
|
|
Loading…
Reference in a new issue