Jim Carver / Mbed OS mbed-cloud-workshop-connect-HTS221

Dependencies:   HTS221

Committer:
JimCarver
Date:
Fri Oct 19 02:01:38 2018 +0000
Revision:
1:521604503e81
Parent:
0:6b753f761943
bug fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JimCarver 0:6b753f761943 1 // ----------------------------------------------------------------------------
JimCarver 0:6b753f761943 2 // Copyright 2016-2017 ARM Ltd.
JimCarver 0:6b753f761943 3 //
JimCarver 0:6b753f761943 4 // SPDX-License-Identifier: Apache-2.0
JimCarver 0:6b753f761943 5 //
JimCarver 0:6b753f761943 6 // Licensed under the Apache License, Version 2.0 (the "License");
JimCarver 0:6b753f761943 7 // you may not use this file except in compliance with the License.
JimCarver 0:6b753f761943 8 // You may obtain a copy of the License at
JimCarver 0:6b753f761943 9 //
JimCarver 0:6b753f761943 10 // http://www.apache.org/licenses/LICENSE-2.0
JimCarver 0:6b753f761943 11 //
JimCarver 0:6b753f761943 12 // Unless required by applicable law or agreed to in writing, software
JimCarver 0:6b753f761943 13 // distributed under the License is distributed on an "AS IS" BASIS,
JimCarver 0:6b753f761943 14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
JimCarver 0:6b753f761943 15 // See the License for the specific language governing permissions and
JimCarver 0:6b753f761943 16 // limitations under the License.
JimCarver 0:6b753f761943 17 // ----------------------------------------------------------------------------
JimCarver 0:6b753f761943 18
JimCarver 0:6b753f761943 19 #ifndef NS_EVENT_LOOP_H_
JimCarver 0:6b753f761943 20 #define NS_EVENT_LOOP_H_
JimCarver 0:6b753f761943 21
JimCarver 0:6b753f761943 22 #ifdef __cplusplus
JimCarver 0:6b753f761943 23 extern "C" {
JimCarver 0:6b753f761943 24 #endif
JimCarver 0:6b753f761943 25
JimCarver 0:6b753f761943 26 void ns_event_loop_thread_create(void);
JimCarver 0:6b753f761943 27 void ns_event_loop_thread_start(void);
JimCarver 0:6b753f761943 28
JimCarver 0:6b753f761943 29 // A extension to original event loop API, which is useful on Linux only
JimCarver 0:6b753f761943 30 void ns_event_loop_thread_stop(void);
JimCarver 0:6b753f761943 31
JimCarver 0:6b753f761943 32 #ifdef __cplusplus
JimCarver 0:6b753f761943 33 }
JimCarver 0:6b753f761943 34 #endif
JimCarver 0:6b753f761943 35
JimCarver 0:6b753f761943 36 #endif /* NS_EVENT_LOOP_H_ */