mirror of
https://github.com/openharmony/drivers_framework.git
synced 2026-07-19 16:24:45 -04:00
26 lines
650 B
C
26 lines
650 B
C
/*
|
|
* Copyright (c) 2020-2021 Huawei Device Co., Ltd.
|
|
*
|
|
* HDF is dual licensed: you can use it either under the terms of
|
|
* the GPL, or the BSD license, at your option.
|
|
* See the LICENSE file in the root of this repository for complete details.
|
|
*/
|
|
|
|
#ifndef OSAL_H
|
|
#define OSAL_H
|
|
|
|
#include "osal/osal_firmware.h"
|
|
#include "osal/osal_irq.h"
|
|
#include "osal/osal_mem.h"
|
|
#include "osal/osal_mutex.h"
|
|
#include "osal/osal_sem.h"
|
|
#include "osal/osal_spinlock.h"
|
|
#include "osal/osal_thread.h"
|
|
#include "osal/osal_time.h"
|
|
#include "osal/osal_timer.h"
|
|
#include "utils/hdf_base.h"
|
|
#include "utils/hdf_log.h"
|
|
#include "utils/hdf_dlist.h"
|
|
|
|
#endif /* OSAL_H */
|