/* * include/linux/eventpoll.h ( Efficient event polling implementation ) * Copyright (C) 2001,...,2006 Davide Libenzi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Davide Libenzi <davidel@xmailserver.org> * */ #ifndef _LINUX_EVENTPOLL_H #define _LINUX_EVENTPOLL_H #include <uapi/linux/eventpoll.h> /* Forward declarations to avoid compiler errors */ struct file; #ifdef CONFIG_EPOLL /* Used to initialize the epoll bits inside the "struct file" */
static inline void eventpoll_init_file(struct file *file) { INIT_LIST_HEAD(&file->f_ep_links); INIT_LIST_HEAD(&file->f_tfile_llink); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Benjamin LaHaise | 12 | 42.86% | 1 | 25.00% |
Jason Baron | 8 | 28.57% | 1 | 25.00% |
Davide Libenzi | 8 | 28.57% | 2 | 50.00% |
Total | 28 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 67 | 56.30% | 2 | 18.18% |
Davide Libenzi | 30 | 25.21% | 5 | 45.45% |
Benjamin LaHaise | 12 | 10.08% | 1 | 9.09% |
Jason Baron | 8 | 6.72% | 1 | 9.09% |
David Howells | 1 | 0.84% | 1 | 9.09% |
Lucas De Marchi | 1 | 0.84% | 1 | 9.09% |
Total | 119 | 100.00% | 11 | 100.00% |