htop/TraceScreen.h

38 lines
696 B
C
Raw Normal View History

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
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>
#include "InfoScreen.h"
#include "Object.h"
#include "Process.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_ {
InfoScreen super;
2006-03-04 18:16:49 +00:00
bool tracing;
2020-10-17 20:32:43 +00:00
pid_t child;
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;
TraceScreen* TraceScreen_new(const Process* process);
2006-03-04 18:16:49 +00:00
void TraceScreen_delete(Object* cast);
bool TraceScreen_forkTracer(TraceScreen* this);
2006-03-04 18:16:49 +00:00
#endif