MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sctp_syscalls_uninit

Function sctp_syscalls_uninit

freebsd/netinet/sctp_syscalls.c:122–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120#endif
121
122int
123sctp_syscalls_uninit(void)
124{
125 int error;
126
127#ifdef COMPAT_FREEBSD32
128 error = syscall32_helper_unregister(sctp32_syscalls);
129 if (error != 0)
130 return (error);
131#endif
132 error = syscall_helper_unregister(sctp_syscalls);
133 if (error != 0)
134 return (error);
135 return (0);
136}
137
138/*
139 * SCTP syscalls.

Callers 1

sctp_module_unloadFunction · 0.85

Calls 1

Tested by

no test coverage detected