repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
dirs for OSS
[minix.git]
/
boot
/
image.h
blob
4afc8dcc57b8a2841781ffe418f23e5af6e75e18
1
/* image.h - Info between installboot and boot. Author: Kees J. Bot
2
*/
3
4
#define IM_NAME_MAX 63
5
6
struct
image_header
{
7
char
name
[
IM_NAME_MAX
+
1
];
/* Null terminated. */
8
struct
exec process
;
9
};
10
11
/*
12
* $PchId: image.h,v 1.4 1995/11/27 22:23:12 philip Exp $
13
*/