commit 2928159e8111dea2cacc2992073961c9ad0ea57e
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Tue Aug 3 09:56:43 2021 +0200

    Release xrestop 0.5
    
    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>

commit d3ce33de2fecb08ae7f7abb06dc92c1038edc662
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Tue Aug 3 09:51:49 2021 +0200

    Fix EXTRA_DIST and MAINTAINERCLEANFILES
    
    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>

commit 8adde9ff142130cd3f927a200b573db7b9b6a533
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Tue Aug 3 08:37:30 2021 +0200

    Fix character buffer sizes to hold full formatted strings

commit 01080057a35b54abce715884ae9fa1938b78d497
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Tue Aug 3 08:37:00 2021 +0200

    Remove unused function window_get_pid()
    
    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>

commit b27891d9d6de2b459e81421a0cd93268f2af35b1
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Tue Aug 3 08:23:38 2021 +0200

    More fixes for README.md + modern packaging
    
    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>

commit 4e284b25c3d85b8e0d5bf32e627b0c60cca4ae7d
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Tue Aug 3 08:14:49 2021 +0200

    Fix version for development.
    
    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>

commit d4509207a4a76849d74b75741361f5b64326431e
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Tue Aug 3 08:13:37 2021 +0200

    Update README for gitlab migration
    
    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>

commit e7887edff307fc4fb05aa7a7a0f6f96df171e431
Author: Peter Harris <pharris@opentext.com>
Date:   Mon Oct 7 14:14:55 2019 -0400

    Display ShmSeg resource count
    
    Shared Memory Segments are often a globally constrained resource. For
    example, Red Hat defaults to a limit of 4096 total system-wide.

commit 19f72d344367a2bd250b5700f412625b249a90fd
Author: Keith Packard <keithp@keithp.com>
Date:   Mon Oct 7 10:08:42 2019 -0700

    Use XResQueryClientIds to get pid instead of window property
    
    Using the extension is more reliable than a window property, plus
    works for clients which have no windows.
    
    Signed-off-by: Keith Packard <keithp@keithp.com>

commit 956c0e145a87d2b19144d820c33c3d64ac348043
Author: Walter Harms <wharms@bfs.de>
Date:   Mon Aug 19 17:52:16 2019 +0200

    FIX: malloc+memset=calloc
    
    libc has a function to provide clean memory, so use it
    
    Signed-off-by: Walter Harms <wharms@bfs.de>

commit 91860c7f6ab6e18bb2e0f0bfaa38e09274c6cc2e
Author: Walter Harms <wharms@bfs.de>
Date:   Mon Aug 19 17:51:10 2019 +0200

    remove unused debug code
    
    code clean up
    
    Signed-off-by: Walter Harms <wharms@bfs.de>

commit 69291d6837b11dec8ebde337d4535ea1ac025cac
Author: Walter Harms <wharms@bfs.de>
Date:   Mon Aug 19 17:49:40 2019 +0200

    no need-to-check argument for XFree
    
    XFree() will accept NULL no need to check
    
    Signed-off-by: Walter Harms <wharms@bfs.de>

commit ba98dbfd00d6d3860e3cac6246f4af408a7be858
Author: Walter Harms <wharms@bfs.de>
Date:   Mon Aug 19 17:46:19 2019 +0200

    FIX:  warning: initialization discards `const' qualifier from pointer target type
    
    make static char *AtomNames -> static const char *AtomNames
    to avoid warning
    xrestop.c:82:5: warning: initialization discards `const' qualifier from pointer target type [enabled by default]
         "PIXMAP",
         ^
         .....
    but because XInternAtoms() expects a array of char * make a cast here
    
    Signed-off-by: Walter Harms <wharms@bfs.de>

commit 1dd66f821d35cccabf45251d2b7857aa2155768d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jan 1 14:56:54 2019 -0800

    Fix -Wsign-compare warnings in xrestop_client_get_stats
    
    xrestop.c: In function ‘xrestop_client_get_stats’:
    xrestop.c:428:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           if (this_type == app->atoms[ATOM_PIXMAP])
                         ^~
    xrestop.c:430:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_WINDOW])
                              ^~
    xrestop.c:432:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_GC])
                              ^~
    xrestop.c:434:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_FONT])
                              ^~
    xrestop.c:436:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_GLYPHSET])
                              ^~
    xrestop.c:438:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_PICTURE])
                              ^~
    xrestop.c:440:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_COLORMAP_ENTRY])
                              ^~
    xrestop.c:442:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_PASSIVE_GRAB])
                              ^~
    xrestop.c:444:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
           else if (this_type == app->atoms[ATOM_CURSOR])
                              ^~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1654e7338075ee23bdb50037e7d69cb9e577d38d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jan 1 14:53:54 2019 -0800

    Fix -Wsign-compare warning in recurse_win_tree()
    
    xrestop.c: In function ‘recurse_win_tree’:
    xrestop.c:358:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       for (i=0; i<nchildren; i++)
                  ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 43ade693674ac5828288f9a6e318d336a91b2cce
Author: Kevin Ryde <user42@zip.com.au>
Date:   Sun Sep 22 11:08:17 2013 +1000

    In xrestop_client_get_info() show xrestop's own pid.
    
    https://gitlab.freedesktop.org/xorg/app/xrestop/issues/1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit aeb1f2dfaf90ecdfd38d3e431c6f0317793c51a6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Nov 21 17:18:04 2018 -0800

    Update configure.ac bug URL for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 59017f0bb0acdc5ab86cc5b40accf5f1e9c35b53
Author: Søren Sandmann Pedersen <ssp@redhat.com>
Date:   Thu Sep 26 12:20:29 2013 -0400

    More man page fixes
    
    * Write --help, not -help.
    
    * Add --max-samples to synopsis

commit bd2a232212676cd2bbca49d2bdae9687c6dbd8a7
Author: Søren Sandmann Pedersen <ssp@redhat.com>
Date:   Thu Sep 26 12:05:21 2013 -0400

    man page: Change -dt to -t
    
    The option -dt doesn't exist in the code; it's called -t.

commit 27ce94e4ec60b37ea75bc8f8f10020b258a475b5
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 12 13:10:21 2011 -0500

    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
    
    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
    AC_PROG_C_C99. This sets gcc with -std=gnu99.
    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 85ec1a3ef9e57c653e9952ec8ab51f231a64f0a7
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 12 11:23:52 2011 -0500

    config: upgrade to util-macros 1.8 for additional man page support
    
    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    The value of MAN_SUBST is the same for all X.Org packages.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit eaddf9df57ea0af0bc4117645a70009f84936ab0
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Dec 29 10:38:17 2010 -0500

    config: use standard xorg .gitignore file
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 93ce3a251a439c4f30843e9386e86854285470b8
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Dec 29 10:32:19 2010 -0500

    config: use standard xorg autogen.sh
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit a3cd6694c31e21226d9b5a707fec7c5aea4a67e2
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Dec 29 10:29:11 2010 -0500

    config: upgrade Autoconf initialization section
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit b2f32dcacb262014c2b6a87ffecce8026a295c89
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Mon Jan 26 16:54:58 2009 -0200

    Correct make distcheck and sparse warnings.

commit a77f4a4743c04139cb5fefa8eb5bf28ed4df6681
Author: James Cloos <cloos@jhcloos.com>
Date:   Fri Dec 7 20:55:17 2007 -0500

    Fix commit 08c9daab3a0b3ef37723c007858fa949cb91bbd8

commit 08c9daab3a0b3ef37723c007858fa949cb91bbd8
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Dec 6 16:37:29 2007 -0500

    Replace static ChangeLog with dist-hook to generate from git log

commit 1f93390ce63016bbeef8e99fac3049514a72e3d7
Author: Ben Byer <bbyer@bbyer.(none)>
Date:   Sat Apr 28 23:05:13 2007 -0700

    fixed typo in output of xrestop -b

commit 5e3d606e9e055c2442e90285b6fe7ffdc2f721b8
Author: Matthew Allum <breakfast@10.am>
Date:   Tue Feb 28 21:32:23 2006 +0000

    Bump up version to 0.4

commit d080976355369b4efe030a14ce45e99e91d6aa58
Author: Matthew Allum <breakfast@10.am>
Date:   Mon Feb 27 20:49:42 2006 +0000

    Add docs for --max-samples options
    Fix gcc 4 compiler warnings. Minor source cleanups. Fix missing PIDs due to
        window recursing bug ( John Tapsell ) Handle 'q' key to quit ( Moray
        Allan ) '--max-samples' option ( Jeremy C Reed )

commit 18e6dd1746b916873d17082722f60913da2d0249
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Feb 27 20:45:19 2006 +0000

    Whitespace (test commit)

commit f6aac77e7f695b9fcc13cdbc91b40889a51ea391
Author: Matthew Allum <breakfast@10.am>
Date:   Sat Aug 14 20:53:39 2004 +0000

    bump up version

commit 90bf12125060c8b5ae3d099ad4f416add39a4a31
Author: Matthew Allum <breakfast@10.am>
Date:   Sat Feb 7 00:08:57 2004 +0000

    man page patch from morray

commit d87556675bb367cece7947e72d020e3ba8c50cc9
Author: Matthew Allum <breakfast@10.am>
Date:   Fri Jan 2 22:25:09 2004 +0000

    Applied patch from Alan Coopersmith with mainly Solaris fixes

commit 0753131e3fa2a396a2d6a3dec09d5041e6ed1248
Author: Matthew Allum <breakfast@10.am>
Date:   Wed Dec 24 09:48:11 2003 +0000

    fixed extra dist

commit 721c103d189bd4ec0c966ac679e6fbf084cc316c
Author: Matthew Allum <breakfast@10.am>
Date:   Wed Dec 24 09:32:31 2003 +0000

    added spec file

commit 8afc29c9cdb0c9b1148573d8c2ad496f2ef6293e
Author: Matthew Allum <breakfast@10.am>
Date:   Sun Dec 21 10:45:42 2003 +0000

    various tweaks

commit 0753fc20f6a3b71cd9ce3e7a7ef314330b8943df
Author: Matthew Allum <breakfast@10.am>
Date:   Sat Dec 20 11:56:07 2003 +0000

    added man page

commit 817e5b605a18fb573b50a0c2e6ad8a7fca3e5a0f
Author: Matthew Allum <breakfast@10.am>
Date:   Sat Dec 20 11:19:37 2003 +0000

    change sort order, display totals

commit 36dd1fd1724d80759a66823ceb51d0775f27c39c
Author: Matthew Allum <breakfast@10.am>
Date:   Thu Dec 18 17:20:35 2003 +0000

    made --batch work

commit 1bfa844991a304c4f645c1b21b5009b45f05b457
Author: Matthew Allum <breakfast@10.am>
Date:   Thu Dec 18 15:27:47 2003 +0000

    utf8 win title support added

commit 2a2da1b362ff6706ec3b54f5011efb7b1b99c789
Author: Matthew Allum <breakfast@10.am>
Date:   Thu Dec 18 14:34:35 2003 +0000

    Added xrestop
