4abfbf4034
The serial UML OS-abstraction layer patch (um/kernel dir). This moves skas headers to arch/um/include. Signed-off-by: Gennady Sharapov <Gennady.V.Sharapov@intel.com> Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
18 lines
242 B
C
18 lines
242 B
C
/*
|
|
* Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __STUB_DATA_H
|
|
#define __STUB_DATA_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
struct stub_data {
|
|
long offset;
|
|
int fd;
|
|
struct itimerval timer;
|
|
long err;
|
|
};
|
|
|
|
#endif
|