2006-06-06 20:28:42 +00:00
|
|
|
#ifndef HEADER_TraceScreen
|
|
|
|
#define HEADER_TraceScreen
|
2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - TraceScreen.h
|
2006-06-06 20:28:42 +00:00
|
|
|
(C) 2005-2006 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-10-17 20:32:43 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
#include "InfoScreen.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-17 20:32:43 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct TraceScreen_ {
|
2016-01-12 08:00:58 +00:00
|
|
|
InfoScreen super;
|
2006-03-04 18:16:49 +00:00
|
|
|
bool tracing;
|
2020-10-17 20:32:43 +00:00
|
|
|
pid_t child;
|
2016-01-12 08:00:58 +00:00
|
|
|
FILE* strace;
|
|
|
|
bool contLine;
|
|
|
|
bool follow;
|
2006-03-04 18:16:49 +00:00
|
|
|
} TraceScreen;
|
|
|
|
|
2006-06-06 20:28:42 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const InfoScreenClass TraceScreen_class;
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
TraceScreen* TraceScreen_new(Process* process);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void TraceScreen_delete(Object* cast);
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void TraceScreen_draw(InfoScreen* this);
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool TraceScreen_forkTracer(TraceScreen* this);
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void TraceScreen_updateTrace(InfoScreen* super);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
bool TraceScreen_onKey(InfoScreen* super, int ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|