2004-12-11 15:02:34 -05:00
|
|
|
#include "../factor.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Various stubs for functions not currently implemented in the Windows port.
|
|
|
|
*/
|
|
|
|
|
2005-02-08 17:05:08 -05:00
|
|
|
void init_signals()
|
|
|
|
{
|
2004-12-11 15:02:34 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2005-02-08 17:05:08 -05:00
|
|
|
|