API
 
Loading...
Searching...
No Matches
MagAOXApp.cpp
Go to the documentation of this file.
1/** \file magAOXApp.cpp
2 * \brief Instantiation of the basic MagAO-X Application
3 * \author Jared R. Males (jaredmales@gmail.com)
4 *
5 * History:
6 * - 2021-01-05 created by JRM
7 *
8 * \ingroup app_files
9 */
10
11#include "MagAOXApp.hpp"
12
13namespace MagAOX
14{
15namespace app
16{
17
18void sigUsr1Handler( int signum,
19 siginfo_t * siginf,
20 void *ucont
21 )
22{
23 static_cast<void>(signum);
24 static_cast<void>(siginf);
25 static_cast<void>(ucont);
26
27 return;
28}
29
30template class MagAOXApp<true>;
31template class MagAOXApp<false>;
32
33
34}
35}
void sigUsr1Handler(int signum, siginfo_t *siginf, void *ucont)
Empty signal handler. SIGUSR1 is used to interrupt sleep in various threads.
Definition MagAOXApp.cpp:18
Definition dm.hpp:28