mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
Remove some kind of profiling support that required the 4.2BSD monitor()
function in libc.
This commit is contained in:
parent
13d4f45b18
commit
c515abc535
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104261
@ -77,14 +77,8 @@ __FBSDID("$FreeBSD$");
|
||||
#include "exec.h"
|
||||
#include "cd.h"
|
||||
|
||||
#define PROFILE 0
|
||||
|
||||
int rootpid;
|
||||
int rootshell;
|
||||
#if PROFILE
|
||||
short profile_buf[16384];
|
||||
extern int etext();
|
||||
#endif
|
||||
|
||||
STATIC void read_profile(char *);
|
||||
STATIC char *find_dot_file(char *);
|
||||
@ -105,9 +99,6 @@ main(int argc, char *argv[])
|
||||
volatile int state;
|
||||
char *shinit;
|
||||
|
||||
#if PROFILE
|
||||
monitor(4, etext, profile_buf, sizeof profile_buf, 50);
|
||||
#endif
|
||||
(void) setlocale(LC_ALL, "");
|
||||
state = 0;
|
||||
if (setjmp(jmploc.loc)) {
|
||||
@ -195,9 +186,6 @@ state3:
|
||||
state4: /* XXX ??? - why isn't this before the "if" statement */
|
||||
cmdloop(1);
|
||||
}
|
||||
#if PROFILE
|
||||
monitor(0);
|
||||
#endif
|
||||
exitshell(exitstatus);
|
||||
/*NOTREACHED*/
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user