diff options
author | Amar Tumballi <amarts@redhat.com> | 2012-08-02 01:42:38 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-08-01 14:34:24 -0700 |
commit | 7004dd1d50dc24910832c549af3808c83c63c671 (patch) | |
tree | ea8f0b50b7d2dbfb240a272eabb693270d1de65b /libglusterfs/src/scheduler.h | |
parent | a5341ef545b1568cbe33db80f62950e428ede98a (diff) |
core: remove libglusterfs/src/scheduler.[ch]
* as its not part of the build
* confuses with some TAGS and 'git greps'
Change-Id: I1f97307a8ce486ba56a4a3ad0151276b0a72e096
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 764890
Reviewed-on: http://review.gluster.com/3769
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'libglusterfs/src/scheduler.h')
-rw-r--r-- | libglusterfs/src/scheduler.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/libglusterfs/src/scheduler.h b/libglusterfs/src/scheduler.h deleted file mode 100644 index 2f1e12205df..00000000000 --- a/libglusterfs/src/scheduler.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - Copyright (c) 2008-2012 Red Hat, Inc. <http://www.redhat.com> - This file is part of GlusterFS. - - This file is licensed to you under your choice of the GNU Lesser - General Public License, version 3 or any later version (LGPLv3 or - later), or the GNU General Public License, version 2 (GPLv2), in all - cases as published by the Free Software Foundation. -*/ - -#ifndef _SCHEDULER_H -#define _SCHEDULER_H - -#ifndef _CONFIG_H -#define _CONFIG_H -#include "config.h" -#endif - -#include "xlator.h" - -struct sched_ops { - int32_t (*init) (xlator_t *this); - void (*fini) (xlator_t *this); - void (*update) (xlator_t *this); - xlator_t *(*schedule) (xlator_t *this, const void *path); - void (*notify) (xlator_t *xl, int32_t event, void *data); - int32_t (*mem_acct_init) (xlator_t *this); -}; - -extern struct sched_ops *get_scheduler (xlator_t *xl, const char *name); - -#endif /* _SCHEDULER_H */ |