diff options
Diffstat (limited to 'src/heap/heap_stub.c')
-rw-r--r-- | src/heap/heap_stub.c | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/src/heap/heap_stub.c b/src/heap/heap_stub.c index b4feb2f3..3093abc2 100644 --- a/src/heap/heap_stub.c +++ b/src/heap/heap_stub.c @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2010, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2015 Oracle and/or its affiliates. All rights reserved. * * $Id: */ @@ -35,6 +35,40 @@ __db_no_heap_am(env) } int +__heap_60_heapmeta(dbp, real_name, flags, fhp, h, dirtyp) + DB *dbp; + char *real_name; + u_int32_t flags; + DB_FH *fhp; + PAGE *h; + int *dirtyp; +{ + COMPQUIET(real_name, NULL); + COMPQUIET(flags, 0); + COMPQUIET(fhp, NULL); + COMPQUIET(h, NULL); + COMPQUIET(dirtyp, NULL); + return (__db_no_heap_am(dbp->env)); +} + +int +__heap_60_heap(dbp, real_name, flags, fhp, h, dirtyp) + DB *dbp; + char *real_name; + u_int32_t flags; + DB_FH *fhp; + PAGE *h; + int *dirtyp; +{ + COMPQUIET(real_name, NULL); + COMPQUIET(flags, 0); + COMPQUIET(fhp, NULL); + COMPQUIET(h, NULL); + COMPQUIET(dirtyp, NULL); + return (__db_no_heap_am(dbp->env)); +} + +int __heap_db_create(dbp) DB *dbp; { |