genode/repos/dde_linux/src/drivers/wifi/wpa.h
2018-08-28 16:18:34 +02:00

48 lines
830 B
C++

/*
* \brief Wpa_supplicant thread of the wifi driver
* \author Josef Soentgen
* \date 2014-03-03
*/
/*
* Copyright (C) 2014-2017 Genode Labs GmbH
*
* This file is distributed under the terms of the GNU General Public License
* version 2.
*/
#ifndef _WIFI__WPA_H_
#define _WIFI__WPA_H_
/* Genode includes */
#include <base/sleep.h>
/* entry function */
extern "C" int wpa_main(void);
class Wpa_thread : public Genode::Thread
{
private:
Genode::Lock &_lock;
int _exit;
public:
Wpa_thread(Genode::Env &env, Genode::Lock &lock)
:
Thread(env, "wpa_supplicant", 8*1024*sizeof(long)),
_lock(lock), _exit(-1)
{ }
void entry()
{
/* wait until the wifi driver is up and running */
_lock.lock();
_exit = wpa_main();
Genode::sleep_forever();
}
};
#endif /* _WIFI__WPA_H_ */