예제 #1
0
파일: erl_bif_port.c 프로젝트: Korn1699/otp
BIF_RETTYPE port_call_3(BIF_ALIST_3)
{
    return port_call(BIF_P, BIF_ARG_1, BIF_ARG_2, BIF_ARG_3);
}
예제 #2
0
파일: api.c 프로젝트: shonma29/eotan
static ER_UINT _port_call(svc_arg *argp)
{
	return port_call((ID)(argp->arg1), (VP)(argp->arg3), (UINT)(argp->arg4));
}
예제 #3
0
파일: erl_bif_port.c 프로젝트: Korn1699/otp
BIF_RETTYPE port_call_2(BIF_ALIST_2)
{
    return port_call(BIF_P,BIF_ARG_1, make_small(0), BIF_ARG_2);
}