factor/native/win32/misc.c

35 lines
471 B
C
Raw Normal View History

2004-12-11 15:02:34 -05:00
#include "../factor.h"
/*
* Various stubs for functions not currently implemented in the Windows port.
*/
void init_signals(void)
{
}
2005-01-02 16:14:34 -05:00
void primitive_accept_fd(F_WORD *word)
2004-12-11 15:02:34 -05:00
{
2005-01-02 16:14:34 -05:00
undefined(word);
2004-12-11 15:02:34 -05:00
}
2005-01-02 16:14:34 -05:00
void primitive_add_accept_io_task(F_WORD *word)
2004-12-11 15:02:34 -05:00
{
2005-01-02 16:14:34 -05:00
undefined(word);
2004-12-11 15:02:34 -05:00
}
2005-01-02 16:14:34 -05:00
void primitive_server_socket(F_WORD *word)
2004-12-11 15:02:34 -05:00
{
2005-01-02 16:14:34 -05:00
undefined(word);
2004-12-11 15:02:34 -05:00
}
2005-01-02 16:14:34 -05:00
void primitive_client_socket(F_WORD *word)
2004-12-11 15:02:34 -05:00
{
2005-01-02 16:14:34 -05:00
undefined(word);
2004-12-11 15:02:34 -05:00
}
2005-01-02 16:14:34 -05:00
void primitive_call_profiling(F_WORD *word)
2004-12-11 15:02:34 -05:00
{
2005-01-02 16:14:34 -05:00
undefined(word);
2004-12-11 15:02:34 -05:00
}