Live data from Hacker News

Viewing profile — paulf38

paulf38

HN member
Joined
Tue, Sep 23, 2025, 1:09 PM UTC
HN karma
20
Public activity
39 items

About paulf38

Valgrind developer

Recent public activity

  1. comment
    Comment #48595094

    Is that something that should be merged to upstream Valgrind?

  2. comment
  3. comment
    Comment #48291349

    And sadly that was one that I broke trying to refactor together all our C++ autoconf tests. Silver lining, I added a test for it so if I break it again we should notice earlier.

  4. comment
    Comment #48257451

    "some community effort" is a huge understatement. Let me rephrase that for you: "Possibly the largest ever single contribution to Valgrind". Initial work on this was started by an …

  5. story
    Valgrind-3.27.1 Is Available

    Just a minor point release, mainly for a regression that I introduced :-( The following bugs have been fixed or resolved in this point release. 519574 valgrind 3.27 "--fair-sched=y…

  6. story
  7. comment
    Comment #47814571

    3.27.0 RC2 is now out. An RC2 tarball for 3.27.0 is now available at https://sourceware.org/pub/valgrind/valgrind-3.27.0.RC2.tar.... (md5sum = 64b955764abeb80fd3e0b6287e596750) (sh…

  8. comment
    Comment #47764050

    For the contents, see https://sourceware.org/git/?p=valgrind.git;a=blob;f=NEWS;h=d...

  9. story
    Valgrind 3.27 RC1 is out

    An RC1 tarball for 3.27.0 is now available at https://sourceware.org/pub/valgrind/valgrind-3.27.0.RC1.tar.bz2 (md5sum = bd95111c1a9f81f136c5e4e2c62b493e) (sha1sum = 0eefb3a7d86a3bd…

  10. comment
  11. comment
    Comment #47638835

    We still use KDE's bugzilla. One of the reasons that Vagrind was initially developed was to help with KDE back when many developers didn't really understand how to use new and dele…

  12. comment
    Comment #47243828

    There was someone at Intel working on AVX512 support in Valgrind. She is/was based in St Petersburg. Intel shuttered their Russian operations when Putin invaded Ukraine and that pr…

  13. comment
    Comment #47177469

    The problem is that there are many many people that are falling over themselves to believe bogus claims about false positives. Outside of Valgrind bugzilla bug reports these claims…

  14. comment
    Comment #46868656

    I'm working on Valgrind on macOS, integrating Louis Brunner's work and trying to add a few more fixes. In 2025 support for macOS Intel 10.14, 10.15 11 and 12 was added. Intel macOS…

  15. comment
    Comment #46584501

    If anyone can help adding AVX512 (and other CPU features) support then that would be most welcome. It’s a major task though.

  16. comment
    Comment #46539382

    > even with Valgrind and similar tools, you are still going to run into weird destructor issues with inheritance. I love these folklore comments. Post an example.

  17. comment
    Comment #46524907

    In my experience that is usually the result of years and years of accumulation of shit code. The results is thousands of leaks. That makes detection of incremental leaks much more …

  18. comment
    Comment #46524883

    OOP is pretty much has-been. Value semantics is the hot thing now I'd say.

  19. comment
    Comment #46189189

    Rather brassy claims. Your library has many issues. Some should be easy to fix. You missed many allocation/deallocation functions (3 from ISO C, 1 from POSIX and 4 non-standard one…

  20. comment
    Comment #46042693

    Valgrind (and the sanitizers) are only as good as your test coverage. Static analysis can cover all your code, though generally with a significant rate of false positives that you …

  21. comment
    Comment #45961844

    Are you trying to explain to me how Valgrind works? If you do know more than me then please join us and become a Valgrind developer. Mostly it wraps system calls and library calls.…

  22. comment
    Comment #45954495

    > Valgrind is a mock of standard library/OS functions and I think its existence is a good thing. That is mostly wrong. Valgrind wraps syscalls. For the most part it just checks the…

  23. comment
    Comment #45951257

    I agree that C is a basket case when it comes to safety and security. The CPU and the hardware don’t care how confident C coders are in their ability. C developers tend to forget t…

  24. comment
    Comment #45896778

    I do most of the Valgrind maintenance these days.

  25. comment
    Comment #45874851

    I wrote a series of articles for ACCU overload back around 2012 to 2013. This was in 6 parts. Introduction https://accu.org/journals/overload/20/108/floyd_1930/ Basic memcheck http…