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

Function fo_add_seals

freebsd/sys/file.h:446–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444}
445
446static __inline int
447fo_add_seals(struct file *fp, int seals)
448{
449
450 if (fp->f_ops->fo_add_seals == NULL)
451 return (EINVAL);
452 return ((*fp->f_ops->fo_add_seals)(fp, seals));
453}
454
455static __inline int
456fo_get_seals(struct file *fp, int *seals)

Callers 1

kern_fcntlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected