123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
- #ifndef _EXFAT_OAL_H
- #define _EXFAT_OAL_H
- #include "exfat_config.h"
- #include "exfat_global.h"
- #include <linux/version.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct {
- UINT16 sec;
- UINT16 min;
- UINT16 hour;
- UINT16 day;
- UINT16 mon;
- UINT16 year;
- } TIMESTAMP_T;
- #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)
- #define DECLARE_MUTEX(m) DEFINE_SEMAPHORE(m)
- #endif
- INT32 sm_init(struct semaphore *sm);
- INT32 sm_P(struct semaphore *sm);
- void sm_V(struct semaphore *sm);
- TIMESTAMP_T *tm_current(TIMESTAMP_T *tm, UINT8 tz_utc);
- #ifdef __cplusplus
- }
- #endif
- #endif
|