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
4c8bc015
Commit
4c8bc015
authored
Jun 02, 2009
by
Hisham Muhammad
Browse files
Add missing file.
parent
f8787727
Changes
1
Show whitespace changes
Inline
Side-by-side
OpenFilesScreen.h
0 → 100644
View file @
4c8bc015
/* Do not edit this file. It was automatically generated. */
#ifndef HEADER_OpenFilesScreen
#define HEADER_OpenFilesScreen
/*
htop - OpenFilesScreen.h
(C) 2005-2006 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <unistd.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "ProcessList.h"
#include "Process.h"
#include "ListItem.h"
#include "Panel.h"
#include "FunctionBar.h"
typedef
struct
OpenFiles_ProcessData_
{
char
*
data
[
256
];
struct
OpenFiles_FileData_
*
files
;
bool
failed
;
}
OpenFiles_ProcessData
;
typedef
struct
OpenFiles_FileData_
{
char
*
data
[
256
];
struct
OpenFiles_FileData_
*
next
;
}
OpenFiles_FileData
;
typedef
struct
OpenFilesScreen_
{
Process
*
process
;
Panel
*
display
;
FunctionBar
*
bar
;
bool
tracing
;
}
OpenFilesScreen
;
OpenFilesScreen
*
OpenFilesScreen_new
(
Process
*
process
);
void
OpenFilesScreen_delete
(
OpenFilesScreen
*
this
);
void
OpenFilesScreen_run
(
OpenFilesScreen
*
this
);
#endif
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