Jump to content

David Heffernan

Members
  • Content Count

    3586
  • Joined

  • Last visited

  • Days Won

    176

Everything posted by David Heffernan

  1. David Heffernan

    getProcessAffinityMask failure handling in OTL

    Silent failure as you propose does not seem very useful to me. Surely better to use RaiseLastOSError in case an API call fails.
  2. David Heffernan

    JSON string value

    Why did you decide that 2 is the answer?
  3. David Heffernan

    JSON string value

    Hmm, rather perplexing conclusion. How did you arrive at it?
  4. David Heffernan

    JSON string value

    https://stackoverflow.com/q/11785963/505088
  5. You might consider buying the book if you want it.
  6. David Heffernan

    track process execution

    No need to hook anything. And in any case, what would you hook? Every process in the entire system? The system raises WMI events when processes are created and destroyed. https://stackoverflow.com/questions/47147099/is-there-a-way-to-recieve-a-event-about-a-process-starting-in-windows
  7. David Heffernan

    A YAML Library for Delphi

    This looks mighty cool. Kudos to you once again. In my codebase at work we use an in-house bespoke wrapper of libyaml. The big difference from yours, I suspect, is that we needed to support very large files, and opted for a SAX type interface.
  8. David Heffernan

    GetMemory vs. GetMem

    But actually, that turns out to be completely wrong. At least in XE7 malloc is implemented as function malloc(size: size_t): Pointer; cdecl; begin Result := AllocMem(size); end; which is pretty lame because AllocMem is zeroising the memory. And potentially throwing an exception. So, a somewhat bogus attempt to implement malloc. Perhaps what is really going on is that GetMemory is the function that you need to call if you want to allow GetMemory(0) to return a pointer to a block of memory, ie. that GetMemory(0) <> nil. But I'm not convinced by that either since the C standard demands that malloc(0) returns a value that cannot be dereferenced, which may or may not be null. Or perhaps it is just a function that returns nil in case of error rather than raising an exception.
  9. David Heffernan

    GetMemory vs. GetMem

    I'd read that as "GetMemory exists so that the Crtl unit can implement malloc".
  10. David Heffernan

    Good design for "file was just saved" message

    Sure, if you ask for an audit, then you want to see the outcome no matter what. But a program that yaps when it manages the to successfully save a file is poor UI. In fact, I've never ever seen such a program.
  11. David Heffernan

    Good design for "file was just saved" message

    Much more valuable is not to show any dialog at all and not to ask them to make a choice about whether they want to see it, and just have the program do the right thing.
  12. David Heffernan

    Good design for "file was just saved" message

    Last thing I want to see from an application is a modal dialog telling me that the app just did what I told it to.
  13. David Heffernan

    converting a C enum to Delphi

    You can read the C standard to find out how it handles that enum. Then double check with a compiler. I mean you surely aren't going to commit this without double checking with a C compiler?
  14. So TParallel doesn't service the synchronize queue?
  15. As for that zip file, you synchronise the pop but not the push. Anyway, replace the code with a lock and take it from there.
  16. There are other forms of locks that you might use. For cross platform code you'd use a monitor.
  17. It could still be related to the code that you have, which we don't have. Anyway, it's a bad idea to force the code onto the main thread just to serialise it. Use a lock instead.
  18. Hard to say with incomplete code. We can only guess as to what PopNode and PushNode do, not to mention the code that operates on the nodes.
  19. David Heffernan

    Saving a large project takes soooo Loooonnnnggg..

    Type that word into Internet search engine.....
  20. David Heffernan

    Saving a large project takes soooo Loooonnnnggg..

    Put madExcept in the IDE via a package and then use madTraceProcess to find out what it is doing whilst saving.
  21. The classic way to do that is a page control where every tab has TabVisible set to False
  22. Antagonising your customers and making them hate you is never a good business plan.
  23. If this is true, you can't even buy what they claim you need. You have to purchase new licences. You can't purchase maintenence once it has expired.
  24. David Heffernan

    FastMM4 and False Positives

    The component vendor is applying a development methodology known as "wishful thinking". FastMM4 doesn't get this wrong.
  25. David Heffernan

    isFileInUSe

    The reason you don't call FileExists is that CreateFile will fail and GetLastError will tell you that the file does not exist. You have tell us why you believe that CreateFile should fail in the scenario that concerns you. Another program already opened the file? With what flags? Rather than have us spend time trying to guess how to recreate the problem, can you provide a complete console app that reproduces the issue.
×