summaryrefslogtreecommitdiff
path: root/ctdb/include
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2016-07-19 16:47:57 +1000
committerAmitay Isaacs <amitay@samba.org>2016-07-25 21:29:43 +0200
commit28523976913bd92b022f623c7fdb1d3b4901f2ac (patch)
treeed618eda80bf2d8d630a86aa1ddbd2864c624e50 /ctdb/include
parentb81824e10d779977288181638fb7879444579b66 (diff)
downloadsamba-28523976913bd92b022f623c7fdb1d3b4901f2ac.tar.gz
ctdb-locking: Remove API for locking databases with priority
This is not used anymore. Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'ctdb/include')
-rw-r--r--ctdb/include/ctdb_private.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/ctdb/include/ctdb_private.h b/ctdb/include/ctdb_private.h
index 1d1d4a06c5a..0cdd1e248ff 100644
--- a/ctdb/include/ctdb_private.h
+++ b/ctdb/include/ctdb_private.h
@@ -696,10 +696,8 @@ int ctdb_db_iterator(struct ctdb_context *ctdb, ctdb_db_handler_t handler,
void *private_data);
int ctdb_lockdb_mark(struct ctdb_db_context *ctdb_db);
-int ctdb_lockall_mark_prio(struct ctdb_context *ctdb, uint32_t priority);
int ctdb_lockdb_unmark(struct ctdb_db_context *ctdb_db);
-int ctdb_lockall_unmark_prio(struct ctdb_context *ctdb, uint32_t priority);
struct lock_request *ctdb_lock_record(TALLOC_CTX *mem_ctx,
struct ctdb_db_context *ctdb_db,
@@ -714,13 +712,6 @@ struct lock_request *ctdb_lock_db(TALLOC_CTX *mem_ctx,
void (*callback)(void *, bool),
void *private_data);
-struct lock_request *ctdb_lock_alldb_prio(TALLOC_CTX *mem_ctx,
- struct ctdb_context *ctdb,
- uint32_t priority,
- bool auto_mark,
- void (*callback)(void *, bool),
- void *private_data);
-
/* from ctdb_logging.c */
extern const char *debug_extra;