1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-04 09:18:36 +03:00
lvm2/lib/misc/lvm-file.h

19 lines
458 B
C
Raw Normal View History

2002-01-10 15:22:17 +03:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the LGPL.
*/
/*
* Create a temporary filename, and opens a descriptor to the file.
*/
int create_temp_name(const char *dir, char *buffer, size_t len, int *fd);
/*
* NFS-safe rename of a temporary file to a common name, designed
* to avoid race conditions and not overwrite the destination if
* it exists.
*/
int lvm_rename(const char *old, const char *new);