Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of OmniWheels by
equeue_stub.c
00001 /* 00002 * Copyright (c) , Arm Limited and affiliates. 00003 * SPDX-License-Identifier: Apache-2.0 00004 * 00005 * Licensed under the Apache License, Version 2.0 (the "License"); 00006 * you may not use this file except in compliance with the License. 00007 * You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 */ 00017 00018 #include "equeue.h" 00019 00020 int equeue_create(equeue_t *queue, size_t size) 00021 { 00022 return 0; 00023 } 00024 00025 int equeue_create_inplace(equeue_t *queue, size_t size, void *buffer) 00026 { 00027 return 0; 00028 } 00029 00030 void equeue_destroy(equeue_t *queue) 00031 { 00032 00033 } 00034 00035 void equeue_dispatch(equeue_t *queue, int ms) 00036 { 00037 00038 } 00039 00040 void equeue_break(equeue_t *queue) 00041 { 00042 00043 } 00044 00045 int equeue_call(equeue_t *queue, void (*cb)(void *), void *data) 00046 { 00047 return 0; 00048 } 00049 00050 int equeue_call_in(equeue_t *queue, int ms, void (*cb)(void *), void *data) 00051 { 00052 return 0; 00053 } 00054 00055 int equeue_call_every(equeue_t *queue, int ms, void (*cb)(void *), void *data) 00056 { 00057 return 0; 00058 } 00059 00060 void *equeue_alloc(equeue_t *queue, size_t size) 00061 { 00062 return NULL; 00063 } 00064 00065 void equeue_dealloc(equeue_t *queue, void *event) 00066 { 00067 00068 } 00069 00070 void equeue_event_delay(void *event, int ms) 00071 { 00072 00073 } 00074 00075 void equeue_event_period(void *event, int ms) 00076 { 00077 00078 } 00079 00080 void equeue_event_dtor(void *event, void (*dtor)(void *)) 00081 { 00082 00083 } 00084 00085 int equeue_post(equeue_t *queue, void (*cb)(void *), void *event) 00086 { 00087 return 0; 00088 } 00089 00090 void equeue_cancel(equeue_t *queue, int id) 00091 { 00092 00093 } 00094 00095 void equeue_background(equeue_t *queue, 00096 void (*update)(void *timer, int ms), void *timer) 00097 { 00098 00099 } 00100 00101 void equeue_chain(equeue_t *queue, equeue_t *target) 00102 { 00103 00104 }
Generated on Fri Jul 22 2022 04:53:47 by
1.7.2
