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 v4.7-rc7 19 lines 276 B view raw
1/* 2 3 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de) 4 * Copyright (C) 2005 Jeff Dike (jdike@karaya.com) 5 * Licensed under the GPL 6 */ 7 8#ifndef __STUB_DATA_H 9#define __STUB_DATA_H 10 11#include <time.h> 12 13struct stub_data { 14 unsigned long offset; 15 int fd; 16 long err; 17}; 18 19#endif