moving src/notify to src/
This commit is contained in:
parent
309350c01f
commit
22d7238b36
15 changed files with 32 additions and 33 deletions
|
|
@ -16,8 +16,8 @@
|
|||
|
||||
#include <mysql/mysql.h>
|
||||
|
||||
#include "../notify/notify.h"
|
||||
#include "../notify/event.h"
|
||||
#include "../notify.h"
|
||||
#include "../event.h"
|
||||
#include "../common/xalloc.h"
|
||||
#include "../ini/iniparser.h"
|
||||
#include "../common/util.h"
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include "../notify/notify.h"
|
||||
#include "../notify.h"
|
||||
|
||||
static void p_exit_time() {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/event.c - notify event implementation
|
||||
/* event.c
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
* (C) Copyright 2010 Fredric Nilsson <fredric@fiktivkod.org>
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "event.h"
|
||||
#include "../common/path.h"
|
||||
#include "common/path.h"
|
||||
|
||||
#define dealloc_data(ev) \
|
||||
if (ev->path) \
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/event.h - event data structure and operation's for notify API
|
||||
/* event.h - event data structure and operation's for notify API
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
* (C) Copyright 2010 Fredric Nilsson <fredric@fiktivkod.org>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/fscrawl.c - Filesystem traversal
|
||||
/* fscrawl.c - Filesystem traversal
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -13,9 +13,9 @@
|
|||
#include <errno.h>
|
||||
#include <dirent.h>
|
||||
|
||||
#include "../common/strbuf.h"
|
||||
#include "../common/path.h"
|
||||
#include "../common/debug.h"
|
||||
#include "common/strbuf.h"
|
||||
#include "common/path.h"
|
||||
#include "common/debug.h"
|
||||
#include "fscrawl.h"
|
||||
|
||||
#define MAX_DEPTH 0x20
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/fscrawl.h - Filesystem traversal
|
||||
/* fscrawl.h - Filesystem traversal
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/inotify.c - inotify implementation
|
||||
/* inotify.c - inotify implementation
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik.hautakoski@gmail.com>
|
||||
* (C) Copyright 2010 Fredric Nilsson <fredric@unknown.org>
|
||||
|
|
@ -16,12 +16,11 @@
|
|||
#include <sys/ioctl.h>
|
||||
#include <sys/inotify.h>
|
||||
|
||||
#include "../common/util.h"
|
||||
#include "common/util.h"
|
||||
/* red black tree for watch descriptors */
|
||||
#include "../common/rbtree.h"
|
||||
#include "../common/debug.h"
|
||||
#include "../common/path.h"
|
||||
|
||||
#include "common/rbtree.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/path.h"
|
||||
#include "queue.h"
|
||||
#include "fscrawl.h"
|
||||
#include "notify.h"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/notify.h - filesystem notification API
|
||||
/* notify.h - filesystem notification API
|
||||
*
|
||||
* (C) Copyright 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
* (C) Copyright 2010 Fredric Nilsson <fredric@fiktivkod.org>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/queue.c
|
||||
/* queue.c
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* notify/queue.h
|
||||
/* queue.h
|
||||
*
|
||||
* Copyright (C) 2010 Henrik Hautakoski <henrik@fiktivkod.org>
|
||||
*
|
||||
Reference in a new issue