2019-02-28 05:35:30 +00:00
|
|
|
/*
|
|
|
|
Looking Glass - KVM FrameRelay (KVMFR) Client
|
|
|
|
Copyright (C) 2017-2019 Geoffrey McRae <geoff@hostfission.com>
|
|
|
|
https://looking-glass.hostfission.com
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-28 08:20:35 +00:00
|
|
|
#include <stdbool.h>
|
2019-02-28 05:35:30 +00:00
|
|
|
|
2019-03-02 09:31:33 +00:00
|
|
|
int app_main();
|
|
|
|
void app_quit();
|
2019-02-28 05:35:30 +00:00
|
|
|
|
2019-02-28 08:20:35 +00:00
|
|
|
// these must be implemented for each OS
|
2019-04-11 07:15:17 +00:00
|
|
|
const char * os_getExecutable();
|
2019-02-28 08:20:35 +00:00
|
|
|
|
|
|
|
unsigned int os_shmemSize();
|
|
|
|
bool os_shmemMmap(void **ptr);
|
2019-03-01 01:24:23 +00:00
|
|
|
void os_shmemUnmap();
|
|
|
|
|
|
|
|
// os specific thread functions
|
|
|
|
|
|
|
|
typedef struct osThreadHandle osThreadHandle;
|
|
|
|
typedef int (*osThreadFunction)(void * opaque);
|
|
|
|
|
|
|
|
bool os_createThread(const char * name, osThreadFunction function, void * opaque, osThreadHandle ** handle);
|
2019-03-02 09:22:35 +00:00
|
|
|
bool os_joinThread (osThreadHandle * handle, int * resultCode);
|
|
|
|
|
|
|
|
// os specific event functions
|
|
|
|
|
2019-03-04 05:56:45 +00:00
|
|
|
#define TIMEOUT_INFINITE ((unsigned int)~0)
|
|
|
|
|
2019-03-02 09:22:35 +00:00
|
|
|
typedef struct osEventHandle osEventHandle;
|
|
|
|
|
2019-03-04 02:38:17 +00:00
|
|
|
osEventHandle * os_createEvent(bool autoReset);
|
2019-03-02 09:22:35 +00:00
|
|
|
void os_freeEvent (osEventHandle * handle);
|
2019-03-04 05:56:45 +00:00
|
|
|
bool os_waitEvent (osEventHandle * handle, unsigned int timeout);
|
2019-04-10 11:07:56 +00:00
|
|
|
bool os_waitEvents (osEventHandle * handles[], int count, bool waitAll, unsigned int timeout);
|
2019-03-04 02:38:17 +00:00
|
|
|
bool os_signalEvent(osEventHandle * handle);
|
|
|
|
bool os_resetEvent (osEventHandle * handle);
|