Search found 11 matches

by pvanlogchem
Thu Aug 30, 2012 7:33 am
Forum: madBasic
Topic: Extend OS with GetProductInfo details
Replies: 5
Views: 21015

Re: Extend OS with GetProductInfo details

Well, the extended OS description would be for logging purposes only (just having a more detailed description is good in any case). As for GlobalMemoryStatusEx, this API returns what's physically available to Windows, not how much is actually present in the machine, nor does it tell the upper limit ...
by pvanlogchem
Mon Aug 27, 2012 3:29 pm
Forum: madKernel
Topic: madKernel not working under XE2 64 bit?
Replies: 7
Views: 23871

Re: madKernel not working under XE2 64 bit?

Thanks for the quick reply.

I couldn't find this information on madshi.net itself, so I'm glad you clarified it here.

I'll just work around it then ;)

Cheers,
Patrick

PS: Did you also take a peek at viewtopic.php?f=2&t=27367&p=45071#p45071 already ? TIA!
by pvanlogchem
Mon Aug 27, 2012 3:04 pm
Forum: madKernel
Topic: madKernel not working under XE2 64 bit?
Replies: 7
Views: 23871

madKernel not working under XE2 64 bit?

Am I missing something, or is madKernel not compatible with XE2 win64 targets yet? (Tested using madCollection 2.7.3.0, madKernel 1.3l) After running the installer, I do have binaries in madKernel\BDS9\win32 but the madKernel\BDS9\win64 folder is emtpy (and I do have a full license). So I tried a co...
by pvanlogchem
Thu Aug 23, 2012 11:06 am
Forum: madBasic
Topic: Extend OS with GetProductInfo details
Replies: 5
Views: 21015

Re: Extend OS with GetProductInfo details

Oh, and on an even deeper level, it'd be helpfull if we could somehow determine how much physical memory each proces is allowed to use... And ideally it'd be even better if we would be able to tune THAT Windows parameter from within our code! The thing is, now that we're running our software on 64 b...
by pvanlogchem
Thu Aug 23, 2012 10:56 am
Forum: madBasic
Topic: Extend OS with GetProductInfo details
Replies: 5
Views: 21015

Re: Extend OS with GetProductInfo details

On a related sidenote : The reason why I would like to know this additional piece of versioning information, is to be able to look up the various limits a given Windows edition implies (like the maximum amount of physical memory supported by said edition - see http://msdn.microsoft.com/en-us/library...
by pvanlogchem
Thu Aug 23, 2012 10:44 am
Forum: madBasic
Topic: Extend OS with GetProductInfo details
Replies: 5
Views: 21015

Extend OS with GetProductInfo details

Could the TOS type be extended with the output of GetProductInfo (if this kernel32 API is available)? And to be more specific : Could TOS.description be extended with a rendering of the specific Windows edition? (Here's a piece of code that does exactly that : http://msdn.microsoft.com/en-us/library...
by pvanlogchem
Mon Nov 21, 2011 2:43 pm
Forum: madCollection
Topic: ANN: madCollection 2.6.2.0 (with XE2 support)
Replies: 4
Views: 8763

Re: ANN: madCollection 2.6.2.0 (with XE2 support)

According to Marco Cantu, Delphi XE2 update pack 2 broke binary .dcu compatibility (see http://blog.marcocantu.com/blog/delphi_xe2_update2.html).

So, if I may ask : Is the madCollection setup updated for this fact already?

Thanks,
Patrick
by pvanlogchem
Thu Feb 11, 2010 2:14 pm
Forum: madExcept
Topic: CreateBugReport : Disassembly for every thread?
Replies: 6
Views: 5436

Thanks for your clarifications, you're absolutely right of course - I really should improve my use of terminology ;-) As for getting the instruction-pointer for any given thread, would it be possible to extend madCollection with some tooling function for that? And perhaps the function that generates...
by pvanlogchem
Thu Feb 11, 2010 8:18 am
Forum: madExcept
Topic: CreateBugReport : Disassembly for every thread?
Replies: 6
Views: 5436

Well, I would like to see the disassembly of every thread so that I can determine what they are doing exactly in case of live-lock situations (that's why I keep a watchdog thread around).
by pvanlogchem
Tue Feb 09, 2010 1:12 pm
Forum: madExcept
Topic: CreateBugReport : How to apply separate IMEModuleSettings ?
Replies: 1
Views: 2770

CreateBugReport : How to apply separate IMEModuleSettings ?

I would like to have a few different IMEModuleSettings instances, so I can configure each separately and pass them to CreateBugReport on a case-by-case basis. Concrete : When logging exceptions I want to use the default settings. But in a watch-dog thread I would like to call CreateBugReport manuall...
by pvanlogchem
Tue Feb 09, 2010 1:07 pm
Forum: madExcept
Topic: CreateBugReport : Disassembly for every thread?
Replies: 6
Views: 5436

CreateBugReport : Disassembly for every thread?

I wonder : How do I make CreateBugReport generate disassembly for every thread, instead of just the main thread?