mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 00:51:51 +00:00
Corrected a segfault.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@18703 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
135aa36da4
commit
784cb5c265
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-02-28 08:40 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* PCLib/PCProjectBuilder.m: -build: method now calls make: directly
|
||||
instead of doing so in a thread. AppKit is not thread-safe
|
||||
(it's not supposed to be :)) and this was causing a segfault when
|
||||
building.
|
||||
|
||||
2003-11-08 Serg Stoyan <stoyan@on.com.ua>
|
||||
|
||||
* Fix segfault when closing Gorm and Renaissance projects (pathc by
|
||||
|
|
|
@ -602,9 +602,13 @@
|
|||
[logOutput setString: @""];
|
||||
[errorOutput setString: @""];
|
||||
|
||||
[self make: data];
|
||||
|
||||
/* AppKit is not multi-threaded. This is causing a segfault.
|
||||
[NSThread detachNewThreadSelector: @selector(make:)
|
||||
toTarget: self
|
||||
withObject: data];
|
||||
*/
|
||||
}
|
||||
|
||||
- (void)buildDidTerminate
|
||||
|
|
Loading…
Reference in a new issue