summaryrefslogtreecommitdiffstats
path: root/SignalsPanel.c
AgeCommit message (Collapse)Author
2018-03-25Fix overflow for signals >= 100.Hisham Muhammad
Thanks to @gzip4 for tracking this down. Closes #764.
2017-07-27Security review: check results of snprintf.Hisham Muhammad
Calls marked with xSnprintf shouldn't fail. Abort program cleanly if any of them does.
2016-09-16Protect against strange values of SIGRTMIN and SIGRTMAX,Hisham
and change alignment of numbers.
2016-09-14Real-time signals support (for kill command)Explorer09
SignalsPanel_new now fetches SIGRTMIN and SIGRTMAX and generates real- time signals entries at runtime. All signals between SIGRTMIN and SIGRTMAX are written in "SIGRTMIN+n" notation, per discussion in pull request #551. Signed-off-by: Kang-Che Sung <explorer09 @ gmail.com>
2015-10-06Fix build in FreeBSD, and make sure SIGTERM is always the default.Hisham Muhammad
2015-10-06Move list of signals to platform-specific code.Hisham Muhammad
Implementations for Linux (tested) and FreeBSD (still untested, thanks to @etosan for providing the table). Darwin and OpenBSD(ping @mmcco) builds should be broken now, pending their own tables.
2015-03-23Simplify constructors.Hisham Muhammad
2015-03-23Move FunctionBar inside PanelHisham Muhammad
2012-12-05Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad
UTF-8 display of big numbers.
2011-12-26Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad
2011-12-26major header cleanupHisham Muhammad
2011-11-05reduce codeHisham Muhammad
2011-11-05Allow typing to select items in various panels (sort, user, signal).Hisham Muhammad
Factored code from the SignalsPanel to apply to all selections from main screen. Closes feature request #3425304.
2010-02-25warning fixesHisham Muhammad
2009-06-02changes for htop 0.8.2Hisham Muhammad
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
Reduces resulting code size.
2007-11-08Improve construction of tree view, properly nesting threads.Hisham Muhammad
Add CPU affinity screen ('a' key). BUGFIX: Correct display of TPGID field. Add TGID field.
2006-05-30Rename ListBox'es to Panel's, matching dit.Hisham Muhammad