Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc7 18 lines 242 B view raw
1/* 2 * Copyright (C) 2005 Jeff Dike (jdike@karaya.com) 3 * Licensed under the GPL 4 */ 5 6#ifndef __STUB_DATA_H 7#define __STUB_DATA_H 8 9#include <sys/time.h> 10 11struct stub_data { 12 long offset; 13 int fd; 14 struct itimerval timer; 15 long err; 16}; 17 18#endif