HomeSort by: relevance | last modified time | path
    Searched refs:locking (Results 1 - 25 of 121) sorted by relevancy

1 2 3 4 5

  /src/external/gpl2/lvm2/dist/lib/locking/
locking_types.h 41 * Locking types
43 int init_no_locking(struct locking_type *locking, struct cmd_context *cmd);
45 int init_readonly_locking(struct locking_type *locking, struct cmd_context *cmd);
47 int init_file_locking(struct locking_type *locking, struct cmd_context *cmd);
49 int init_external_locking(struct locking_type *locking, struct cmd_context *cmd);
51 int init_cluster_locking(struct locking_type *locking, struct cmd_context *cmd);
no_locking.c 19 #include "locking.h"
27 * No locking
86 int init_no_locking(struct locking_type *locking, struct cmd_context *cmd __attribute((unused)))
88 locking->lock_resource = _no_lock_resource;
89 locking->reset_locking = _no_reset_locking;
90 locking->fin_locking = _no_fin_locking;
91 locking->flags = LCK_CLUSTERED;
96 int init_readonly_locking(struct locking_type *locking, struct cmd_context *cmd __attribute((unused)))
98 locking->lock_resource = _readonly_lock_resource;
99 locking->reset_locking = _no_reset_locking
    [all...]
external_locking.c 62 int init_external_locking(struct locking_type *locking, struct cmd_context *cmd)
67 log_error("External locking already initialised");
71 locking->lock_resource = _lock_resource;
72 locking->fin_locking = _fin_external_locking;
73 locking->reset_locking = _reset_external_locking;
74 locking->flags = 0;
79 if (!(_locking_lib = load_shared_library(cmd, libname, "locking", 1)))
87 log_error("Shared library %s does not contain locking "
98 log_verbose("Loaded external locking library %s", libname);
99 return _init_fn(2, cmd->cft, &locking->flags)
    [all...]
file_locking.c 19 #include "locking.h"
236 log_very_verbose("Locking %s %c%c", ll->res, state,
288 log_very_verbose("Locking LV %s (NL)", resource);
293 log_very_verbose("Locking LV %s (R)", resource);
298 log_very_verbose("Locking LV %s (PR) - ignored", resource);
301 log_very_verbose("Locking LV %s (W)", resource);
306 log_very_verbose("Locking LV %s (EX)", resource);
323 int init_file_locking(struct locking_type *locking, struct cmd_context *cmd)
327 locking->lock_resource = _file_lock_resource;
328 locking->reset_locking = _reset_file_locking
    [all...]
cluster_locking.c 19 * Locking functions for LVM.
27 #include "locking.h"
361 log_error("Error locking on node %s: %s",
454 log_very_verbose("Locking %s %s %s %s%s%s%s (0x%x)", lock_scope, lockname,
556 int init_cluster_locking(struct locking_type *locking, struct cmd_context *cmd)
558 locking->lock_resource = _lock_resource;
559 locking->query_resource = _query_resource;
560 locking->fin_locking = _locking_end;
561 locking->reset_locking = _reset_locking;
562 locking->flags = LCK_PRE_MEMLOCK | LCK_CLUSTERED
    [all...]
  /src/external/gpl2/lvm2/dist/lib/
Makefile 68 locking/file_locking.c \
69 locking/locking.c \
70 locking/no_locking.c \
118 SOURCES += locking/cluster_locking.c
122 SUBDIRS += locking
141 locking/external_locking.c \
Makefile.in 68 locking/file_locking.c \
69 locking/locking.c \
70 locking/no_locking.c \
118 SOURCES += locking/cluster_locking.c
122 SUBDIRS += locking
141 locking/external_locking.c \
  /src/external/bsd/unbound/dist/libunbound/
context.h 238 * @param locking: if true, cfglock is locked while getting alloc.
241 struct alloc_cache* context_obtain_alloc(struct ub_ctx* ctx, int locking);
246 * @param locking: if true, cfglock is locked while releasing alloc.
250 int locking);
context.c 198 context_obtain_alloc(struct ub_ctx* ctx, int locking)
202 if(locking) {
209 if(locking) {
225 int locking)
229 if(locking) {
234 if(locking) {
  /src/external/bsd/libevent/dist/
bufferevent-internal.h 208 * If NULL, locking is disabled. */
365 /** Internal: Set up locking on a bufferevent. If lock is set, use it.
488 struct bufferevent_private *locking = BEV_UPCAST(b); \
489 EVLOCK_LOCK(locking->lock, 0); \
494 struct bufferevent_private *locking = BEV_UPCAST(b); \
495 EVLOCK_UNLOCK(locking->lock, 0); \
evthread_win32.c 41 #include <sys/locking.h>
  /src/external/bsd/ntp/dist/sntp/libevent/
bufferevent-internal.h 208 * If NULL, locking is disabled. */
365 /** Internal: Set up locking on a bufferevent. If lock is set, use it.
488 struct bufferevent_private *locking = BEV_UPCAST(b); \
489 EVLOCK_LOCK(locking->lock, 0); \
494 struct bufferevent_private *locking = BEV_UPCAST(b); \
495 EVLOCK_UNLOCK(locking->lock, 0); \
evthread_win32.c 40 #include <sys/locking.h>
  /src/external/mit/xorg/lib/libICE/
Makefile 10 listen.c listenwk.c locking.c misc.c ping.c process.c protosetup.c \
  /src/external/gpl2/lvm2/lib/liblvm/
Makefile 36 file_locking.c locking.c no_locking.c log.c lv_manip.c \
62 .PATH: ${LVM2_DISTDIR}/lib/locking
  /src/external/gpl2/lvm2/dist/
Makefile 43 lib/locking \
Makefile.in 43 lib/locking \
configure.in 251 AC_MSG_CHECKING(whether to include support for cluster locking)
253 [ --with-cluster=TYPE Cluster LVM locking support: internal/shared/none
265 AC_DEFINE([CLUSTER_LOCKING_INTERNAL], 1, [Define to 1 to include built-in support for clustered LVM locking.])
353 dnl -- If clvmd enabled without cluster locking, automagically include it
1164 lib/locking/Makefile
  /src/sys/dev/raidframe/
rf_reconutil.c 260 XXXX IF you use this, you really want to fix the locking in here.
  /src/external/gpl3/autoconf/dist/lib/Autom4te/
XFile.pm 217 Lock the file using C<flock>. If locking fails for reasons other than
232 # invocation of 'make' has invoked the tool we serve, report all locking
  /src/sbin/route/
route.c 133 int locking, lockrest, debugonly, shortoutput; variable
415 if (lockrest || locking)
417 if (locking)
418 locking = 0;
505 locking = 1;
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcov-driver.c 56 #include <sys/locking.h>
  /src/external/gpl3/gcc/dist/libgcc/
libgcov-driver.c 56 #include <sys/locking.h>
  /src/external/bsd/ipf/dist/
HISTORY 233 3433764 left over locking
466 fix scheduling of bad locking in fr_addstate() used when we attach onto
847 fix some locking problems.
  /src/external/gpl3/gcc.old/dist/gcc/
system.h 73 do not have to use the locking functions. In fact, using the locking
368 # include <sys/locking.h>

Completed in 42 milliseconds

1 2 3 4 5