-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 187198 b: refs/heads/master c: 1e0051a h: refs/heads/master v: v3
- Loading branch information
Randy Dunlap
authored and
Linus Torvalds
committed
Mar 12, 2010
1 parent
ef78ae9
commit 3bdb1b4
Showing
6 changed files
with
51 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: d49129accc21ddb2e779d375dacafb612b1bd28d | ||
refs/heads/master: 1e0051ae48a253685e4309256f9c1ec2bdb74b5d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
obj-m := DocBook/ accounting/ auxdisplay/ connector/ \ | ||
filesystems/configfs/ ia64/ laptops/ networking/ \ | ||
filesystems/ filesystems/configfs/ ia64/ laptops/ networking/ \ | ||
pcmcia/ spi/ timers/ video4linux/ vm/ watchdog/src/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# kbuild trick to avoid linker error. Can be omitted if a module is built. | ||
obj- := dummy.o | ||
|
||
# List of programs to build | ||
hostprogs-y := dnotify_test | ||
|
||
# Tell kbuild to always build the programs | ||
always := $(hostprogs-y) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#define _GNU_SOURCE /* needed to get the defines */ | ||
#include <fcntl.h> /* in glibc 2.2 this has the needed | ||
values defined */ | ||
#include <signal.h> | ||
#include <stdio.h> | ||
#include <unistd.h> | ||
|
||
static volatile int event_fd; | ||
|
||
static void handler(int sig, siginfo_t *si, void *data) | ||
{ | ||
event_fd = si->si_fd; | ||
} | ||
|
||
int main(void) | ||
{ | ||
struct sigaction act; | ||
int fd; | ||
|
||
act.sa_sigaction = handler; | ||
sigemptyset(&act.sa_mask); | ||
act.sa_flags = SA_SIGINFO; | ||
sigaction(SIGRTMIN + 1, &act, NULL); | ||
|
||
fd = open(".", O_RDONLY); | ||
fcntl(fd, F_SETSIG, SIGRTMIN + 1); | ||
fcntl(fd, F_NOTIFY, DN_MODIFY|DN_CREATE|DN_MULTISHOT); | ||
/* we will now be notified if any of the files | ||
in "." is modified or new files are created */ | ||
while (1) { | ||
pause(); | ||
printf("Got event on fd=%d\n", event_fd); | ||
} | ||
} |