.hgignore

Tue, 04 Oct 2022 19:25:07 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 04 Oct 2022 19:25:07 +0200
changeset 591
7df0bcaecffa
parent 398
8d506ed6c1c0
child 753
24dc84788dee
permissions
-rw-r--r--

fix over-optimization of strstr

1. it's actually less performant to frequently read bytes
from an array instead of using the native word length
2. the SBO buffer should be local and not static to allow
multi-threading usage

     1 syntax:regexp
     2 ^nbproject/
     3 ^build/
     4 /core$
     5 DS_Store$
     6 ^stamp-h
     7 /test-suite.log$
     8 ^ucx-.*\.tar.gz$
     9 ^.idea/
    10 ^cmake-build-

mercurial