memunlockall.c
来自「网络流量生成工具,开源软件,也可以作为网络流量检测软件使用」· C语言 代码 · 共 22 行
C
22 行
/* * $smu-mark$ * $name: memunlockall.c$ * $other_author: Alfonso De Gregorio <dira@speedcom.it> * $other_copyright: Copyright (C) 1999 by Alfonso De Gregorio * $license: This software is under GPL version 2 of license$ * $date: Fri Nov 5 11:55:48 MET 1999$ * $rev: 2$ */#include <unistd.h>#include <sys/mman.h>int memunlockall(void){#ifdef _POSIX_MEMLOCK return ( munlockall() );#endif return(-1);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?