added k60d100m project
[adk-bluetooth-test.git] / adk-stack / adapter / coop.h
blob2b8266459b690b30dab8738d0ddd41e2dddcf9a6
1 /*
2 * Copyright (C) 2012 The Android Open Source Project
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 #ifdef ADK_INTERNAL
17 #ifndef _COOP_H_
18 #define _COOP_H_
21 typedef void (*CoopTaskF)(void* ptr);
23 int coopInit(void); //0 on fail
24 int coopSpawn(CoopTaskF task, void* taskData, uint32_t stackSz,uint32_t * task_id); //0 on fail
25 void coopYield(void);
27 int coopDoom(uint32_t task_id) ;
29 void sleep(uint32_t ms);
31 #endif
32 #endif