1
by brian
clean slate |
1 |
/* Copyright (C) 2000 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
1802.10.2
by Monty Taylor
Update all of the copyright headers to include the correct address. |
14 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
1
by brian
clean slate |
15 |
|
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
16 |
#include <config.h> |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
17 |
|
2173.2.1
by Monty Taylor
Fixes incorrect usage of include |
18 |
#include <drizzled/internal/my_sys.h> |
19 |
#include <drizzled/error.h> |
|
1
by brian
clean slate |
20 |
|
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
21 |
namespace drizzled |
22 |
{
|
|
23 |
namespace internal |
|
24 |
{
|
|
25 |
||
1
by brian
clean slate |
26 |
int my_delete(const char *name, myf MyFlags) |
27 |
{
|
|
28 |
int err; |
|
29 |
||
30 |
if ((err = unlink(name)) == -1) |
|
31 |
{
|
|
1241.9.57
by Monty Taylor
Oy. Bigger change than I normally like - but this stuff is all intertwined. |
32 |
errno=errno; |
1
by brian
clean slate |
33 |
if (MyFlags & (MY_FAE+MY_WME)) |
34 |
my_error(EE_DELETE,MYF(ME_BELL+ME_WAITTANG+(MyFlags & ME_NOINPUT)), |
|
35 |
name,errno); |
|
36 |
}
|
|
37 |
else if ((MyFlags & MY_SYNC_DIR) && |
|
38 |
my_sync_dir_by_file(name, MyFlags)) |
|
39 |
err= -1; |
|
51.3.17
by Jay Pipes
Phase 4 - Remove DBUG from mysys |
40 |
return(err); |
1
by brian
clean slate |
41 |
} /* my_delete */ |
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
42 |
|
43 |
} /* namespace internal */ |
|
44 |
} /* namespace drizzled */ |