• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_c/ex_apprec/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002,2008 Oracle.  All rights reserved.
5 *
6 * $Id: ex_apprec.src,v 12.8 2008/01/08 20:58:24 bostic Exp $
7 */
8
9PREFIX	ex_apprec
10INCLUDE #include "ex_apprec.h"
11
12/*
13 * This is the source file used to generate the application-specific recovery
14 * functions used by the ex_apprec example.  It should be turned into usable
15 * source code (including a template for the recovery function itself) by
16 * invoking changing to the dist directory of the DB distribution and
17 * running the gen_rec.awk script there as follows:
18 *
19 *     awk -f ./gen_rec.awk \
20 *         -v source_file=../examples_c/ex_apprec/ex_apprec_auto.c         \
21 *         -v header_file=../examples_c/ex_apprec/ex_apprec_auto.h         \
22 *         -v template_file=../examples_c/ex_apprec/ex_apprec_template     \
23 *         < ../examples_c/ex_apprec/ex_apprec.src
24 */
25
26/*
27 * mkdir: used to create a directory
28 *
29 * dirname:	relative or absolute pathname of the directory to be created
30 */
31BEGIN mkdir	42	10000
32DBT	dirname		DBT		s
33END
34