Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
b70b35ea
Commit
b70b35ea
authored
Nov 08, 2007
by
Hisham Muhammad
Browse files
Improve error display on crash to get better bug reports.
parent
a7c2aedc
Changes
3
Hide whitespace changes
Inline
Side-by-side
CRT.c
View file @
b70b35ea
...
...
@@ -14,6 +14,7 @@ in the source distribution for its full text.
#include "String.h"
#include "config.h"
#include "debug.h"
#define ColorPair(i,j) COLOR_PAIR((7-i)*8+j)
...
...
@@ -181,7 +182,7 @@ void CRT_enableDelay() {
void
CRT_handleSIGSEGV
(
int
signal
)
{
CRT_done
();
fprintf
(
stderr
,
"
A
borted. Please report bug at http://htop.sf.net"
);
fprintf
(
stderr
,
"
htop "
VERSION
" a
borted. Please report bug at http://htop.sf.net
\n
"
);
exit
(
1
);
}
...
...
CRT.h
View file @
b70b35ea
...
...
@@ -17,6 +17,7 @@ in the source distribution for its full text.
#include "String.h"
#include "config.h"
#include "debug.h"
#define ColorPair(i,j) COLOR_PAIR((7-i)*8+j)
...
...
configure.ac
View file @
b70b35ea
...
...
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
AC_INIT([htop],[0.
6.6
],[loderunner@users.sourceforge.net])
AC_INIT([htop],[0.
7
],[loderunner@users.sourceforge.net])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([htop.c])
AC_CONFIG_HEADER([config.h])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment