예제 #1
0
파일: x_time.c 프로젝트: porres/pure-data
void x_time_setup(void)
{
    delay_setup();
    metro_setup();
    line_setup();
    timer_setup();
    pipe_setup();
}
예제 #2
0
static int console_chan_setup(char *str)
{
	char *error;
	int ret;

	ret = line_setup(vts, ARRAY_SIZE(vts), str, &error);
	if(ret < 0)
		printk(KERN_ERR "Failed to set up console with "
		       "configuration string \"%s\" : %s\n", str, error);

	return 1;
}
예제 #3
0
파일: ssl.c 프로젝트: 274914765/C
static int ssl_chan_setup(char *str)
{
    char *error;
    int ret;

    ret = line_setup(serial_lines, ARRAY_SIZE(serial_lines), str, &error);
    if(ret < 0)
        printk(KERN_ERR "Failed to set up serial line with "
               "configuration string \"%s\" : %s\n", str, error);

    return 1;
}
예제 #4
0
static int ssl_chan_setup(char *str)
{
	return(line_setup(serial_lines, 
			  sizeof(serial_lines)/sizeof(serial_lines[0]), 
			  str, 1));
}
예제 #5
0
static int ssl_chan_setup(char *str)
{
	line_setup(conf, NR_PORTS, &def_conf, str, "serial line");
	return 1;
}
예제 #6
0
static int console_chan_setup(char *str)
{
	return(line_setup(vts, sizeof(vts)/sizeof(vts[0]), str, 1));
}