sandboxed-api/oss-internship-2020/libuv/callbacks/callbacks.h

39 lines
962 B
C
Raw Normal View History

2020-09-22 22:41:06 +08:00
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2020-09-25 23:06:24 +08:00
#ifndef CALLBACKS_H_
#define CALLBACKS_H_
2020-09-22 22:41:06 +08:00
#include <uv.h>
extern "C" {
// idle-basic
2020-09-25 23:06:24 +08:00
void IdleCallback(uv_idle_t* handle);
2020-09-22 22:41:06 +08:00
// uvcat
uv_fs_t open_req;
uv_fs_t read_req;
uv_fs_t write_req;
2020-09-25 23:06:24 +08:00
void OnWrite(uv_fs_t* req);
void OnRead(uv_fs_t* req);
void OnOpen(uv_fs_t* req);
2020-09-22 22:41:06 +08:00
// test_callback
2020-09-25 23:06:24 +08:00
void TimerCallback(uv_timer_t* handle);
2020-09-22 22:41:06 +08:00
2020-09-25 23:06:24 +08:00
} // extern "C"
2020-09-22 22:41:06 +08:00
2020-09-25 23:06:24 +08:00
#endif // CALLBACKS_H_