/* * Copyright (C) 2018 The Android Open Source Project * * 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. */ #include #include #include #include #include #include #include #include #define TLOG_TAG "restart-srv" /* Resources are intentionally not freed to test application cleanup on exit */ int main(void) { int rc; handle_t restart_port; uevent_t uevt; rc = port_create(RESTART_PORT, 1, 1, IPC_PORT_ALLOW_TA_CONNECT); if (rc < 0) { TLOGI("failed (%d) to create ctrl port\n", rc); return rc; } restart_port = (handle_t)rc; rc = wait(restart_port, &uevt, INFINITE_TIME); if (rc != NO_ERROR || !(uevt.event & IPC_HANDLE_POLL_READY)) { TLOGI("Port wait failed: %d(%d)\n", rc, uevt.event); return rc; } return 0; }