diff options
Diffstat (limited to 'src/mutex/mut_stub.c')
| -rw-r--r-- | src/mutex/mut_stub.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mutex/mut_stub.c b/src/mutex/mut_stub.c index 61ecc80c..0ece9a9d 100644 --- a/src/mutex/mut_stub.c +++ b/src/mutex/mut_stub.c @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved. * * $Id$ */ @@ -157,6 +157,16 @@ __mutex_print_debug_stats(env, mbp, mutex, flags) } int +__mutex_refresh(env, mutex) + ENV *env; + db_mutex_t mutex; +{ + COMPQUIET(env, NULL); + COMPQUIET(mutex, MUTEX_INVALID); + return (0); +} + +int __mutex_set_align(dbenv, align) DB_ENV *dbenv; u_int32_t align; |
