blob: 27ff76e7e08ac3a99e9249155d30e0f0e1534e0f [file] [log] [blame]
nxpandroidc7611652015-09-23 16:42:05 +05301/******************************************************************************
2 *
3 * Copyright (C) 1999-2012 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18#ifndef GKI_INT_H
19#define GKI_INT_H
20
nxpandroidc7611652015-09-23 16:42:05 +053021#include <pthread.h>
nxf24591c1cbeab2018-02-21 17:32:26 +053022#include "gki_common.h"
nxpandroidc7611652015-09-23 16:42:05 +053023
24/**********************************************************************
25** OS specific definitions
26*/
27#ifdef ANDROID
28#include <sys/times.h>
29#endif
30
nxpandroid8f6d0532017-07-12 18:25:30 +053031typedef struct {
32 pthread_mutex_t GKI_mutex;
33 pthread_t thread_id[GKI_MAX_TASKS];
34 pthread_mutex_t thread_evt_mutex[GKI_MAX_TASKS];
35 pthread_cond_t thread_evt_cond[GKI_MAX_TASKS];
36 pthread_mutex_t thread_timeout_mutex[GKI_MAX_TASKS];
37 pthread_cond_t thread_timeout_cond[GKI_MAX_TASKS];
38 int no_timer_suspend; /* 1: no suspend, 0 stop calling GKI_timer_update() */
39 pthread_mutex_t gki_timer_mutex;
40 pthread_cond_t gki_timer_cond;
41 int gki_timer_wake_lock_on;
nxpandroidc7611652015-09-23 16:42:05 +053042} tGKI_OS;
43
44/* condition to exit or continue GKI_run() timer loop */
45#define GKI_TIMER_TICK_RUN_COND 1
46#define GKI_TIMER_TICK_STOP_COND 0
47#define GKI_TIMER_TICK_EXIT_COND 2
48
nxpandroid8f6d0532017-07-12 18:25:30 +053049extern void gki_system_tick_start_stop_cback(bool start);
nxpandroidc7611652015-09-23 16:42:05 +053050
51/* Contains common control block as well as OS specific variables */
nxpandroid8f6d0532017-07-12 18:25:30 +053052typedef struct {
53 tGKI_OS os;
54 tGKI_COM_CB com;
nxpandroidc7611652015-09-23 16:42:05 +053055} tGKI_CB;
56
nxpandroid8f6d0532017-07-12 18:25:30 +053057extern tGKI_CB gki_cb;
nxpandroidc7611652015-09-23 16:42:05 +053058
nxpandroidc7611652015-09-23 16:42:05 +053059#endif