⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 os_fsync.c

📁 这是国外的resip协议栈
💻 C
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2004 *	Sleepycat Software.  All rights reserved. * * $Id: os_fsync.c,v 11.21 2004/07/06 21:06:38 mjc Exp $ */#include "db_config.h"#ifndef NO_SYSTEM_INCLUDES#include <sys/types.h>#include <fcntl.h>			/* XXX: Required by __hp3000s900 */#include <unistd.h>#include <string.h>#endif#include "db_int.h"/* * __os_fsync -- *	Flush a file descriptor. */int__os_fsync(dbenv, fhp)	DB_ENV *dbenv;	DB_FH *fhp;{	int ret;	/*	 * Do nothing if the file descriptor has been marked as not requiring	 * any sync to disk.	 */	if (F_ISSET(fhp, DB_FH_NOSYNC))		return (0);	if (DB_GLOBAL(j_fsync) != NULL)		ret = DB_GLOBAL(j_fsync)(fhp->fd);	else		RETRY_CHK((!FlushFileBuffers(fhp->handle)), ret);	if (ret != 0)		__db_err(dbenv, "fsync %s", strerror(ret));	return (ret);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -