<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in .gitignore</title>
    <link>http://src.iws.cs.ovgu.de/source/rss/systemd/.gitignore</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    <item>
        <title>test-resolve-tables: new "test", useful to print mappings</title>
        <description>/systemd/.gitignore - c7472ce088fe5f062fcc7a71cf3c797fbdc58ddd</description>
        <pubDate></pubDate>
        <dc:creator>Zbigniew Jędrzejewski-Szmek  &lt;zbyszek@in.waw.pl&gt;</dc:creator>
    </item>

    <item>
        <title>.gitignore: add test-ask-password-api</title>
        <description>/systemd/.gitignore - 7e7d8ffc7f5a81b00806082531014b98a26da639</description>
        <pubDate></pubDate>
        <dc:creator>Sylvain Plantefève  &lt;sylvain.plantefeve@gmail.com&gt;</dc:creator>
    </item>

    <item>
        <title>nss: block various signals while running NSS lookups
    
    Let's make sure our poll() calls don't get interrupted where they shouldn't (SIGALRM, ...), but allow them to be
    interrupted where they should (SIGINT, ...).
    
    Fixes #1965</title>
        <description>/systemd/.gitignore - 0c5eb0562abec6f845f07c30b2ad2515900ec1e5</description>
        <pubDate></pubDate>
        <dc:creator>Lennart Poettering &lt;lennart@poettering.net&gt;</dc:creator>
    </item>

    <item>
        <title>resolve: rename "systemd-resolve-host" tool to simply "systemd-resolve"
    
    The tool resolves way more than just hosts, hence give it a more generic name. This should be safe, as the tool is
    currently undocumented. Before we add documentation for it, let's get the name right.
    
    This also moves the C source into src/resolve/ (from src/resolve-host/), since the old name is a misnomer now. Also,
    since it links directly to many of the C files of resolved it really belongs into resolved's directory anyway.</title>
        <description>/systemd/.gitignore - b5eb973b39665d6a66f5a498fbdb511765e646e2</description>
        <pubDate></pubDate>
        <dc:creator>Lennart Poettering &lt;lennart@poettering.net&gt;</dc:creator>
    </item>

    <item>
        <title>.gitignore: add test-dnssec-complex
    
    This is a follow-up for 412577e</title>
        <description>/systemd/.gitignore - ecab97b280c509801af386e747d6ba19d43f4454</description>
        <pubDate></pubDate>
        <dc:creator>Evgeny Vereshchagin &lt;evvers@ya.ru&gt;</dc:creator>
    </item>

    <item>
        <title>basic: add RB-Tree implementation
    
    This adds an self-standing RB-Tree implementation to src/basic/. This
    will be needed for NSEC RR lookups, since we need "close lookups", which
    hashmaps (not even ordered-hashmaps) can give us in reasonable time.</title>
        <description>/systemd/.gitignore - a0e4cae82065edae47885614d73c534171aa8f7b</description>
        <pubDate></pubDate>
        <dc:creator>David Herrmann &lt;dh.herrmann@gmail.com&gt;</dc:creator>
    </item>

    <item>
        <title>tests: add test-rlimit-util</title>
        <description>/systemd/.gitignore - fe39daf2c13d60421f8965f617125b3bff50645c</description>
        <pubDate></pubDate>
        <dc:creator>Evgeny Vereshchagin &lt;evvers@ya.ru&gt;</dc:creator>
    </item>

    <item>
        <title>.gitignore: add test-dnssec
    
    This is a follow-up for 2b442ac87838be7c326</title>
        <description>/systemd/.gitignore - eb588312e8ff21d1fa315c48e07d7cb93d7f183f</description>
        <pubDate></pubDate>
        <dc:creator>Evgeny Vereshchagin &lt;evvers@ya.ru&gt;</dc:creator>
    </item>

    <item>
        <title>test-acl-util: add new test
    
    For now, only add_acls_for_user is tested. When run under root, it
    actually sets the acls. When run under non-root, it sets the acls for
    the user, which does nothing, but at least calls the functions.</title>
        <description>/systemd/.gitignore - 5bb5b236fe8c663b7d4db5ccaf3e3e7942bf6abd</description>
        <pubDate></pubDate>
        <dc:creator>Zbigniew Jędrzejewski-Szmek  &lt;zbyszek@in.waw.pl&gt;</dc:creator>
    </item>

    <item>
        <title>gitignore: only ignore .html files in man/
    
    src/journal-remote/browse.html is git-tracked source and should not be ignored.
    Avoid accidentally ignoring similar ones in the future.</title>
        <description>/systemd/.gitignore - 8cb9bee994d61547f739d4fd731ae25c72c98004</description>
        <pubDate></pubDate>
        <dc:creator>Martin Pitt &lt;martin.pitt@ubuntu.com&gt;</dc:creator>
    </item>

    <item>
        <title>gitignore: add test-install-root</title>
        <description>/systemd/.gitignore - 23bfbe7fdb85b1c8749101810e9f34e36fd42731</description>
        <pubDate></pubDate>
        <dc:creator>Thomas Hindoe Paaboel Andersen &lt;phomes@gmail.com&gt;</dc:creator>
    </item>

    <item>
        <title>sd-pppoe: drop
    
    It is really unclear if we want to / have the resources to support this fully, so drop it
    for now. It can easily be brought back if a killer usecase emerges.
    
    Note that this code was never hooked up, so this does not remove any features.</title>
        <description>/systemd/.gitignore - 0f8980e48bfffebd54d58b1f48bd392ef01cb96e</description>
        <pubDate></pubDate>
        <dc:creator>Tom Gundersen &lt;teg@jklm.no&gt;</dc:creator>
    </item>

    <item>
        <title>string-util: rework memory_erase() so that it cannot be optimized away
    
    memory_erase() so far just called memset(), which the compiler might
    optimize away under certain conditions if it feels there's benefit in
    it. C11 knows a new memset_s() call that is like memset(), but may not
    be optimized away. Ideally, we'd just use that call, but glibc currently
    does not support it. Hence, implement our own simplistic version of it.
    
    We use a GCC pragma to turn off optimization for this call, and also use
    the "volatile" keyword on the pointers to ensure that gcc will use the
    pointers as-is. According to a variety of internet sources, either one
    does the trick. However, there are also reports that at least the
    volatile thing isn't fully correct, hence let's add some snake oil and
    employ both techniques.
    
    https://news.ycombinator.com/item?id=4711346</title>
        <description>/systemd/.gitignore - 9fe4ea21bec739bfe0ebac5565f0539b0e25b317</description>
        <pubDate></pubDate>
        <dc:creator>Lennart Poettering &lt;lennart@poettering.net&gt;</dc:creator>
    </item>

    <item>
        <title>test-parse-util: Move parse-util tests into their own test case
    
    Tests for the functions defined in src/basic/parse-util.c. Reorder them
    to match the order in which the functions are defined in the source
    file. Adjusted the list of include files to remove the ones no longer
    needed in test-util.c.
    
    Tested that `make check` still passes as expected. Also checked the
    number of lines removed from test-util.c matches the expected, as an
    additional verification that no tests were dropped or duplicated in the
    move.</title>
        <description>/systemd/.gitignore - bb269eed0e447a2f973677246959b403d480ed63</description>
        <pubDate></pubDate>
        <dc:creator>Filipe Brandenburger &lt;filbranden@google.com&gt;</dc:creator>
    </item>

    <item>
        <title>test-extract-word: Move extract-word tests into their own test case
    
    Tests for the functions defined in src/basic/extract-word.c.
    
    Tested that `make check` still passes as expected.</title>
        <description>/systemd/.gitignore - 23a3c916179873d755b863d14b14c6e7f4d0f2de</description>
        <pubDate></pubDate>
        <dc:creator>Filipe Brandenburger &lt;filbranden@google.com&gt;</dc:creator>
    </item>

    <item>
        <title>build-sys: Keep .gitignore sorted
    
    Let's try to keep it that way! :-)</title>
        <description>/systemd/.gitignore - d8c3019b02051bb3252bb9054cde340124bf274f</description>
        <pubDate></pubDate>
        <dc:creator>Filipe Brandenburger &lt;filbranden@google.com&gt;</dc:creator>
    </item>

    <item>
        <title>util: remove lookup_uid(), replace by uid_to_name()
    
    So far we had two pretty much identical calls in user-util.[ch]:
    lookup_uid() and uid_to_name(). Get rid of the former, in favour of the
    latter, and while we are at it, rewrite it, to use getpwuid_r()
    correctly, inside an allocation loop, as POSIX intended.</title>
        <description>/systemd/.gitignore - d02608170e599b1ffbc7c9a22062bae2579d6e36</description>
        <pubDate></pubDate>
        <dc:creator>Lennart Poettering &lt;lennart@poettering.net&gt;</dc:creator>
    </item>

    <item>
        <title>sd-icmp6-nd: rename files to sd-ndisc
    
    The actual code rename will follow. The reason for the change of name is to make it
    simpler and more uniform with how we name other libraries (we don't include the
    underlying protocol). The new name also matches the naming in the kernel (which
    is particularly relevent here as we expect to let the kernel do some parts of
    the protocol and we do others).</title>
        <description>/systemd/.gitignore - 3ad0c5d8a4e2e2fa7ffcccd7f3457f577908494e</description>
        <pubDate></pubDate>
        <dc:creator>Tom Gundersen &lt;teg@jklm.no&gt;</dc:creator>
    </item>

    <item>
        <title>test: siphash24 - add regression test</title>
        <description>/systemd/.gitignore - a245d90a898c2e1a77258aeb4b8a189ec771e804</description>
        <pubDate></pubDate>
        <dc:creator>Tom Gundersen &lt;teg@jklm.no&gt;</dc:creator>
    </item>

    <item>
        <title>machine-id-commit: merge machine-id-commit functionality into machine-id-setup
    
    And remove machine-id-commit as separate binary.
    
    There's really no point in keeping this separate, as the sources are
    pretty much identical, and have pretty identical interfaces. Let's unify
    this in one binary.
    
    Given that machine-id-commit was a private binary of systemd (shipped in
    /usr/lib/) removing the tool is not an API break.
    
    While we are at it, improve the documentation of the command substantially.</title>
        <description>/systemd/.gitignore - 4a9b1dd4ad38e54e6b7df99fe3366ceddd1fa572</description>
        <pubDate></pubDate>
        <dc:creator>Lennart Poettering &lt;lennart@poettering.net&gt;</dc:creator>
    </item>

</channel>
</rss>

