49 lines
923 B
C
Executable File
49 lines
923 B
C
Executable File
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <sys/msg.h>
|
|
#include <sys/time.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/prctl.h>
|
|
#include "sf_type.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif
|
|
SINT32 main(SINT32 s32Argc, SF_CHAR* pszArgv[])
|
|
{
|
|
|
|
printf("*********************************************\n");
|
|
printf("* *\n");
|
|
printf("* sf_cs_app *\n");
|
|
printf("* *\n");
|
|
printf("*********************************************\n");
|
|
|
|
|
|
|
|
while(1)
|
|
{
|
|
usleep(1000 * 500);
|
|
}
|
|
|
|
|
|
exit(0);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* End of #ifdef __cplusplus */
|
|
|