blob: ff9e80f5556addc1b8027b18edd053836f1bb176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2009 Oracle. All rights reserved.
*
* $Id$
*/
#include "db_config.h"
#include "db_int.h"
/*
* __os_unlink --
* Remove a file.
*/
int
__os_unlink(env, path, overwrite_test)
ENV *env;
const char *path;
int overwrite_test;
{
IFileMgr *ifmp;
int ret;
FILE_MANAGER_CREATE(env, ifmp, ret);
if (ret != 0)
return (ret);
LAST_PANIC_CHECK_BEFORE_IO(env);
if (IFILEMGR_Remove(ifmp, path) == EFAILED)
FILE_MANAGER_ERR(env, ifmp, path, "IFILEMGR_Remove", ret);
IFILEMGR_Release(ifmp);
COMPQUIET(overwrite_test, 0);
return (ret);
}
|