Re: Debugging on Linux with non-fragile ABI?

2019-11-18 Thread Pirmin Braun
sion could not be prepared to run in the target > >>> (lldb) print self->value > >>> Error [IRForTarget]: Couldn't find Objective-C indirect ivar symbol > >>> OBJC_IVAR_$_Test.value > >>> error: The expression could not be prepared to run in the targe

Re: double free or corruption in base Rev. 39909 2016-06-22 16:14:05

2016-06-24 Thread Pirmin Braun
rams - ObjC and C. Only difference is, ObjC program crashes and C doesn't. With the slightly modified query string valgrind reports no invalid write. -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Creidlitzer Straße 106, 96450 Coburg +49 2642 40526292 +49 174 9747584 - skype:pirminb www.intars

Re: double free or corruption in base Rev. 39909 2016-06-22 16:14:05

2016-06-23 Thread Pirmin Braun
On Thu, 23 Jun 2016 20:32:56 +0100 Richard Frith-Macdonald <richard.frith-macdon...@brainstorm.co.uk> wrote: > > > On 23 Jun 2016, at 14:43, Pirmin Braun <p...@intars.de> wrote: > > > > Hi, I've isolated a strange crash, see attached test program. It's >

GNUstep base: bug in NSDecimalNumber decimalNumberByRoundingAccordingToBehavior: ?

2014-01-19 Thread Pirmin Braun
see attached TestTool -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Am Hofbräuhaus 1 - 96450 Coburg +49 2642 40526292 +49 174 9747584 - skype:pirminb www.intars.de p...@intars.de Geschäftsführer: Pirmin Braun, Ralf Engelhardt Registergericht: Amtsgericht Coburg HRB3136 Output on WO

patch suggestion Re: GNUstep base: bug in NSDecimalNumber decimalNumberByRoundingAccordingToBehavior: ?

2014-01-19 Thread Pirmin Braun
does this make sense? -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Am Hofbräuhaus 1 - 96450 Coburg +49 2642 40526292 +49 174 9747584 - skype:pirminb www.intars.de p...@intars.de Geschäftsführer: Pirmin Braun, Ralf Engelhardt Registergericht: Amtsgericht Coburg HRB3136

recommended developer environment for GNUstep?

2013-05-08 Thread Pirmin Braun
Dear Developers, since we're about to leave ProjectBuilder on YellowBox on XP, I'd like to know what's your favourite dev-environment for programming with GNUstep? -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642 308288 +49 174 9747584

Re: Creating PDF reports

2013-02-27 Thread Pirmin Braun
/mailman/listinfo/gnustep-dev -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642 308288 +49 174 9747584 - skype:pirminb www.intars.de p...@intars.de intars.sourceforge.net Geschäftsführer: Pirmin Braun, Ralf Engelhardt Registergericht: Amtsgericht Coburg

Partially solved: big memory leak in GSString

2013-01-14 Thread Pirmin Braun
,attributeName)]; eats 160 MB. idmLines is a mutable array with approx. 34000 instances of PBIDMLine, a small 4 string data bearing object any ideas? known (old) bug? -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642 308288 +49 174 9747584 - skype:pirminb

Re: Solved: big memory leak in GSString

2013-01-14 Thread Pirmin Braun
)(leftVal, compSel, rightVal); } return r; } -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642 308288 +49 174 9747584 - skype:pirminb www.intars.de p...@intars.de intars.sourceforge.net Geschäftsführer: Pirmin Braun, Ralf Engelhardt

Re: big memory leak in GSString

2013-01-08 Thread Pirmin Braun
consumption; background of all this: when creating a certain object by parsing a string it takes 200 MB more than instantiating it out of an formerly archived instance using NSArchiver/NSUnarchiver -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642

Re: big memory leak in GSString

2013-01-08 Thread Pirmin Braun
Am Tue, 8 Jan 2013 14:51:07 + schrieb David Chisnall thera...@sucs.org : On 8 Jan 2013, at 14:41, Pirmin Braun wrote: NSString *s1 = [[a oai:i]copy]; For an immutable string, -copy just calls retain. If you want to actually copy the string, do something like: NSString *s1

big memory leak in GSString

2013-01-07 Thread Pirmin Braun
. Is this a known bug? Maybe fixed in newer Revs? I've scanned the svn log but found nothing appropriate. -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642 308288 +49 174 9747584 - skype:pirminb www.intars.de p...@intars.de intars.sourceforge.net

Re: big memory leak in GSString

2013-01-07 Thread Pirmin Braun
by the second pool. But it didn't. Also I did some debugging with gdb with breakpoints on [NSAutoreleasePool alloc] and dealloc to make sure, there are no other pools involved. And the App is singlethreaded. -- Pirmin Braun - IntarS Unternehmenssoftware GmbH - Sinziger Str. 29a - 53424 Remagen +49 2642

Re: big memory leak in GSString

2013-01-07 Thread Pirmin Braun
*pool =[NSAutoreleasePool new]; a = [s componentsSeparatedByString:@|]; s1 = [a objectAtIndex:0]; NSLog(([NSString stringWithFormat:@TestTool: %@ has retainCount of %i,s1,[s1 retainCount]])); [pool release]; exit (0); return 0; } -- Pirmin Braun - IntarS

Re: big memory leak in GSString

2013-01-07 Thread Pirmin Braun
Am Mon, 7 Jan 2013 23:06:22 + schrieb Tom Davie tom.da...@gmail.com : On 7 Jan 2013, at 22:50, Pirmin Braun p...@intars.de wrote: Am Mon, 7 Jan 2013 22:28:13 + schrieb Tom Davie tom.da...@gmail.com : Instead, simply try to reduce this to a simple test case in which

Re: Please welcome Marcian Lytwyn

2012-05-08 Thread Pirmin Braun
Welcome Marcian :-) -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb Fax +49(0)2642 308626 http://www.seat-1.com p...@seat-1.com http://intars.sourceforge.net Geschäftsführer

fileHandleForReadingFromURL:error: vs. fileHandleAsServerAtAddress: ?

2012-03-09 Thread Pirmin Braun
Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb Fax +49(0)2642 308626 http://www.seat-1.com p...@seat-1.com http://intars.sourceforge.net Geschäftsführer: Pirmin Braun, Ralf Engelhardt Registergericht: Amtsgericht Coburg

Re: open source but closed community?

2012-02-15 Thread Pirmin Braun
framework; in the moment I'm working on an EOAdaptor for unixODBC. -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb Fax +49(0)2642 308626 http://www.seat-1.com p...@seat-1.com http

open source but closed community?

2012-02-11 Thread Pirmin Braun
contribute GNUstep software. But nobody answered my mails to the webmaster. Now I'm a little clueless. What am I expected to do? -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb

Re: [NSXML + libxml2] external retains

2012-01-26 Thread Pirmin Braun
from my experience, in a tree structure it's best not to retain up in the hierarchy and not to retain between siblings, only retain children and take this into account for the design of objects that use the tree or parts of it -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1

Oracle ?

2012-01-23 Thread Pirmin Braun
what's the best approach to talk to an Oracle DB in GNUStep? SQLClient with JDBC? -- mit freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb Fax +49(0)2642 308626 http://www.seat-1.com p

Re: Next GNUstep release?

2011-11-10 Thread Pirmin Braun
freundlichen Gruessen/best regards Pirmin Braun seat-1 Software GmbH - Sinziger Str. 29a - 53424 Remagen +49(0)2642 308288 +49(0)163-6290887 - skype:pirminb Fax +49(0)2642 308626 http://www.seat-1.com p...@seat-1.com http://intars.sourceforge.net Geschäftsführer: Pirmin Braun, Ralf Engelhardt