fb970f3df7
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1371231 13f79535-47bb-0310-9956-ffa450edef68
59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef __POSIX_UTIL_H__
|
|
#define __POSIX_UTIL_H__
|
|
|
|
/**
|
|
* Recursively delete the contents of a directory
|
|
*
|
|
* @param path directory whose contents we should delete
|
|
*
|
|
* @return 0 on success; error code otherwise
|
|
*/
|
|
int recursiveDeleteContents(const char *path);
|
|
|
|
/**
|
|
* Recursively delete a local path, using unlink or rmdir as appropriate.
|
|
*
|
|
* @param path path to delete
|
|
*
|
|
* @return 0 on success; error code otherwise
|
|
*/
|
|
int recursiveDelete(const char *path);
|
|
|
|
/**
|
|
* Get a temporary directory
|
|
*
|
|
* @param tempDir (out param) path to the temporary directory
|
|
* @param nameMax Length of the tempDir buffer
|
|
* @param mode Mode to create with
|
|
*
|
|
* @return 0 on success; error code otherwise
|
|
*/
|
|
int createTempDir(char *tempDir, int nameMax, int mode);
|
|
|
|
/**
|
|
* Sleep without using signals
|
|
*
|
|
* @param sec Number of seconds to sleep
|
|
*/
|
|
void sleepNoSig(int sec);
|
|
|
|
#endif
|