summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-04-27xrestop 0.6HEADxrestop-0.6masterAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-04man page: stop saying the X-Resource extension is "very new"Alan Coopersmith1-1/+1
While 20 years old may still be relatively new in the lifetime of X11, it's not normally considered "new" in the rest of the tech world. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-04Add --version optionAlan Coopersmith2-8/+22
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-12-08Fix builds on SolarisAlan Coopersmith2-2/+10
Need to include the ncurses version of curses.h when linking against ncurses, as the standard Solaris curses.h is incompatible with ncurses. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-12-08gitlab CI: stop requiring Signed-off-by in commitsAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-06-18configure: remove fallback for pre-pkg-config systemsAlan Coopersmith2-58/+4
It's been 16 years, we can rely on pkg-config files for X libraries now Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-06-18configure: remove unnecessary checksAlan Coopersmith1-10/+0
These are all part of our base platform assumptions now, and the code was already using them without checking the results of the configure tests Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-06-18Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parametersAlan Coopersmith1-1/+2
configure.ac:92: warning: AC_OUTPUT should be used without arguments. configure.ac:92: You should run autoupdate. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-04-06Link with libtinfo if availableMatt Turner1-0/+1
Bug: https://bugs.gentoo.org/529782 Signed-off-by: Matt Turner <mattst88@gmail.com>
2021-12-07Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07gitlab CI: add a basic build testAlan Coopersmith1-0/+98
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-05Fixes -Wformat warning in xrestop_displayThomas Kuehne1-1/+1
xrestop.c: In function ‘xrestop_display’: xrestop.c:551:32: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘XID’ {aka ‘long unsigned int’} [-Wformat=] 551 | mvprintw(i+5, 0, "%.7x %4d %4d %4d %4d %4d %4d %7s %7s %7s %5s %s", | ~~~^
2021-08-03Release xrestop 0.5xrestop-0.5Matthieu Herrb1-1/+1
Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2021-08-03Fix EXTRA_DIST and MAINTAINERCLEANFILESMatthieu Herrb1-3/+2
Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2021-08-03Fix character buffer sizes to hold full formatted stringsMatthieu Herrb1-10/+12
2021-08-03Remove unused function window_get_pid()Matthieu Herrb1-25/+0
Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2021-08-03More fixes for README.md + modern packagingMatthieu Herrb2-4/+3
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
2021-08-03Fix version for development.Matthieu Herrb1-1/+1
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
2021-08-03Update README for gitlab migrationMatthieu Herrb2-3/+18
Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
2021-07-28Display ShmSeg resource countPeter Harris1-2/+11
Shared Memory Segments are often a globally constrained resource. For example, Red Hat defaults to a limit of 4096 total system-wide.
2019-10-07Use XResQueryClientIds to get pid instead of window propertyKeith Packard1-6/+21
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>
2019-08-19FIX: malloc+memset=callocWalter Harms1-4/+2
libc has a function to provide clean memory, so use it Signed-off-by: Walter Harms <wharms@bfs.de>
2019-08-19remove unused debug codeWalter Harms1-10/+0
code clean up Signed-off-by: Walter Harms <wharms@bfs.de>
2019-08-19no need-to-check argument for XFreeWalter Harms1-6/+6
XFree() will accept NULL no need to check Signed-off-by: Walter Harms <wharms@bfs.de>
2019-08-19FIX: warning: initialization discards `const' qualifier from pointer target ↵Walter Harms1-2/+2
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>
2019-01-01Fix -Wsign-compare warnings in xrestop_client_get_statsAlan Coopersmith1-1/+1
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>
2019-01-01Fix -Wsign-compare warning in recurse_win_tree()Alan Coopersmith1-1/+1
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>
2019-01-01In xrestop_client_get_info() show xrestop's own pid.Kevin Ryde1-0/+1
https://gitlab.freedesktop.org/xorg/app/xrestop/issues/1 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-21Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-26More man page fixesSøren Sandmann Pedersen1-3/+2
* Write --help, not -help. * Add --max-samples to synopsis
2013-09-26man page: Change -dt to -tSøren Sandmann Pedersen1-1/+1
The option -dt doesn't exist in the code; it's called -t.
2011-01-12config: remove AC_PROG_CC as it overrides AC_PROG_C_C99Gaetan Nadon1-1/+0
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>
2011-01-12config: upgrade to util-macros 1.8 for additional man page supportGaetan Nadon1-3/+5
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>
2011-01-12config: use standard xorg .gitignore fileGaetan Nadon1-12/+66
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-12-29config: use standard xorg autogen.shGaetan Nadon1-1/+11
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-12-29config: upgrade Autoconf initialization sectionGaetan Nadon1-6/+5
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-01-26Correct make distcheck and sparse warnings.Paulo Cesar Pereira de Andrade4-18/+46
2007-12-07Fix commit 08c9daab3a0b3ef37723c007858fa949cb91bbd8James Cloos1-1/+1
2007-12-06Replace static ChangeLog with dist-hook to generate from git logJames Cloos2-88/+10
2007-04-28fixed typo in output of xrestop -bBen Byer1-2/+2
2006-02-28Bump up version to 0.4xrestop-0.4Matthew Allum2-1/+6
2006-02-27Add docs for --max-samples optionsMatthew Allum3-31/+96
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 )
2006-02-27Whitespace (test commit)Adam Jackson1-1/+1
2004-08-14bump up versionMatthew Allum2-1/+6
2004-02-07man page patch from morrayMatthew Allum2-13/+20
2004-01-02Applied patch from Alan Coopersmith with mainly Solaris fixesMatthew Allum3-12/+51
2003-12-24fixed extra distMatthew Allum2-2/+7
2003-12-24added spec fileRELEASE_0_2Matthew Allum5-2/+52
2003-12-21various tweaksRELEASE_0_1Matthew Allum2-4/+24
2003-12-20added man pageMatthew Allum5-1/+51