亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? posix.pod

?? UNIX下perl實(shí)現(xiàn)代碼
?? POD
?? 第 1 頁 / 共 4 頁
字號:
=head1 NAMEPOSIX - Perl interface to IEEE Std 1003.1=head1 SYNOPSIS    use POSIX;    use POSIX qw(setsid);    use POSIX qw(:errno_h :fcntl_h);    printf "EINTR is %d\n", EINTR;    $sess_id = POSIX::setsid();    $fd = POSIX::open($path, O_CREAT|O_EXCL|O_WRONLY, 0644);	# note: that's a filedescriptor, *NOT* a filehandle=head1 DESCRIPTIONThe POSIX module permits you to access all (or nearly all) the standardPOSIX 1003.1 identifiers.  Many of these identifiers have been given Perl-ishinterfaces.  Things which are C<#defines> in C, like EINTR or O_NDELAY, areautomatically exported into your namespace.  All functions are only exportedif you ask for them explicitly.  Most likely people will prefer to use thefully-qualified function names.This document gives a condensed list of the features available in the POSIXmodule.  Consult your operating system's manpages for general information onmost features.  Consult L<perlfunc> for functions which are noted as beingidentical to Perl's builtin functions.The first section describes POSIX functions from the 1003.1 specification.The second section describes some classes for signal objects, TTY objects,and other miscellaneous objects.  The remaining sections list variousconstants and macros in an organization which roughly follows IEEE Std1003.1b-1993.=head1 NOTEThe POSIX module is probably the most complex Perl module supplied withthe standard distribution.  It incorporates autoloading, namespace games,and dynamic loading of code that's in Perl, C, or both.  It's a greatsource of wisdom.=head1 CAVEATS A few functions are not implemented because they are C specific.  If youattempt to call these, they will print a message telling you that theyaren't implemented, and suggest using the Perl equivalent should oneexist.  For example, trying to access the setjmp() call will elicit themessage "setjmp() is C-specific: use eval {} instead".Furthermore, some evil vendors will claim 1003.1 compliance, but in factare not so: they will not pass the PCTS (POSIX Compliance Test Suites).For example, one vendor may not define EDEADLK, or the semantics of theerrno values set by open(2) might not be quite right.  Perl does notattempt to verify POSIX compliance.  That means you can currentlysuccessfully say "use POSIX",  and then later in your program you findthat your vendor has been lax and there's no usable ICANON macro afterall.  This could be construed to be a bug.=head1 FUNCTIONS=over 8=item _exitThis is identical to the C function C<_exit()>.  It exits the programimmediately which means among other things buffered I/O is B<not> flushed.=item abortThis is identical to the C function C<abort()>.  It terminates theprocess with a C<SIGABRT> signal unless caught by a signal handler orif the handler does not return normally (it e.g.  does a C<longjmp>).=item absThis is identical to Perl's builtin C<abs()> function, returningthe absolute value of its numerical argument.=item accessDetermines the accessibility of a file.	if( POSIX::access( "/", &POSIX::R_OK ) ){		print "have read permission\n";	}Returns C<undef> on failure.  Note: do not use C<access()> forsecurity purposes.  Between the C<access()> call and the operationyou are preparing for the permissions might change: a classicI<race condition>.=item acosThis is identical to the C function C<acos()>, returningthe arcus cosine of its numerical argument.  See also L<Math::Trig>.=item alarmThis is identical to Perl's builtin C<alarm()> function,either for arming or disarming the C<SIGARLM> timer.=item asctimeThis is identical to the C function C<asctime()>.  It returnsa string of the form	"Fri Jun  2 18:22:13 2000\n\0"and it is called thusly	$asctime = asctime($sec, $min, $hour, $mday, $mon, $year,			   $wday, $yday, $isdst);The C<$mon> is zero-based: January equals C<0>.  The C<$year> is1900-based: 2001 equals C<101>.  The C<$wday>, C<$yday>, and C<$isdst>default to zero (and the first two are usually ignored anyway).=item asinThis is identical to the C function C<asin()>, returningthe arcus sine of its numerical argument.  See also L<Math::Trig>.=item assertUnimplemented, but you can use L<perlfunc/die> and the L<Carp> moduleto achieve similar things.=item atanThis is identical to the C function C<atan()>, returning thearcus tangent of its numerical argument.  See also L<Math::Trig>.=item atan2This is identical to Perl's builtin C<atan2()> function, returningthe arcus tangent defined by its two numerical arguments, the I<y>coordinate and the I<x> coordinate.  See also L<Math::Trig>.=item atexitatexit() is C-specific: use C<END {}> instead, see L<perlsub>.=item atofatof() is C-specific.  Perl converts strings to numbers transparently.If you need to force a scalar to a number, add a zero to it.=item atoiatoi() is C-specific.  Perl converts strings to numbers transparently.If you need to force a scalar to a number, add a zero to it.If you need to have just the integer part, see L<perlfunc/int>.=item atolatol() is C-specific.  Perl converts strings to numbers transparently.If you need to force a scalar to a number, add a zero to it.If you need to have just the integer part, see L<perlfunc/int>.=item bsearchbsearch() not supplied.  For doing binary search on wordlists,see L<Search::Dict>.=item calloccalloc() is C-specific.  Perl does memory management transparently.=item ceilThis is identical to the C function C<ceil()>, returning the smallestinteger value greater than or equal to the given numerical argument.=item chdirThis is identical to Perl's builtin C<chdir()> function, allowingone to change the working (default) directory, see L<perlfunc/chdir>.=item chmodThis is identical to Perl's builtin C<chmod()> function, allowingone to change file and directory permissions, see L<perlfunc/chmod>.=item chownThis is identical to Perl's builtin C<chown()> function, allowing oneto change file and directory owners and groups, see L<perlfunc/chown>.=item clearerrUse the method L<IO::Handle::clearerr()> instead, to reset the errorstate (if any) and EOF state (if any) of the given stream.=item clockThis is identical to the C function C<clock()>, returning theamount of spent processor time in microseconds.=item closeClose the file.  This uses file descriptors such as those obtained by callingC<POSIX::open>.	$fd = POSIX::open( "foo", &POSIX::O_RDONLY );	POSIX::close( $fd );Returns C<undef> on failure.See also L<perlfunc/close>.=item closedirThis is identical to Perl's builtin C<closedir()> function for closinga directory handle, see L<perlfunc/closedir>.=item cosThis is identical to Perl's builtin C<cos()> function, for returningthe cosine of its numerical argument, see L<perlfunc/cos>.See also L<Math::Trig>.=item coshThis is identical to the C function C<cosh()>, for returningthe hyperbolic cosine of its numeric argument.  See also L<Math::Trig>.=item creatCreate a new file.  This returns a file descriptor like the ones returned byC<POSIX::open>.  Use C<POSIX::close> to close the file.	$fd = POSIX::creat( "foo", 0611 );	POSIX::close( $fd );See also L<perlfunc/sysopen> and its C<O_CREAT> flag.=item ctermidGenerates the path name for the controlling terminal.	$path = POSIX::ctermid();=item ctimeThis is identical to the C function C<ctime()> and equivalentto C<asctime(localtime(...))>, see L</asctime> and L</localtime>.=item cuseridGet the login name of the owner of the current process.	$name = POSIX::cuserid();=item difftimeThis is identical to the C function C<difftime()>, for returningthe time difference (in seconds) between two times (as returnedby C<time()>), see L</time>.=item divdiv() is C-specific, use L<perlfunc/int> on the usual C</> division andthe modulus C<%>.=item dupThis is similar to the C function C<dup()>, for duplicating a filedescriptor.This uses file descriptors such as those obtained by callingC<POSIX::open>.Returns C<undef> on failure.=item dup2This is similar to the C function C<dup2()>, for duplicating a filedescriptor to an another known file descriptor.This uses file descriptors such as those obtained by callingC<POSIX::open>.Returns C<undef> on failure.=item errnoReturns the value of errno.	$errno = POSIX::errno();This identical to the numerical values of the C<$!>, see L<perlvar/$ERRNO>.=item execlexecl() is C-specific, see L<perlfunc/exec>.=item execleexecle() is C-specific, see L<perlfunc/exec>.=item execlpexeclp() is C-specific, see L<perlfunc/exec>.=item execvexecv() is C-specific, see L<perlfunc/exec>.=item execveexecve() is C-specific, see L<perlfunc/exec>.=item execvpexecvp() is C-specific, see L<perlfunc/exec>.=item exitThis is identical to Perl's builtin C<exit()> function for exiting theprogram, see L<perlfunc/exit>.=item expThis is identical to Perl's builtin C<exp()> function forreturning the exponent (I<e>-based) of the numerical argument,see L<perlfunc/exp>.=item fabsThis is identical to Perl's builtin C<abs()> function for returningthe absolute value of the numerical argument, see L<perlfunc/abs>.=item fcloseUse method C<IO::Handle::close()> instead, or see L<perlfunc/close>.=item fcntlThis is identical to Perl's builtin C<fcntl()> function,see L<perlfunc/fcntl>.=item fdopenUse method C<IO::Handle::new_from_fd()> instead, or see L<perlfunc/open>.=item feofUse method C<IO::Handle::eof()> instead, or see L<perlfunc/eof>.=item ferrorUse method C<IO::Handle::error()> instead.=item fflushUse method C<IO::Handle::flush()> instead.See also L<perlvar/$OUTPUT_AUTOFLUSH>.=item fgetcUse method C<IO::Handle::getc()> instead, or see L<perlfunc/read>.=item fgetposUse method C<IO::Seekable::getpos()> instead, or see L<L/seek>.=item fgetsUse method C<IO::Handle::gets()> instead.  Similar to E<lt>E<gt>, also knownas L<perlfunc/readline>.=item filenoUse method C<IO::Handle::fileno()> instead, or see L<perlfunc/fileno>.=item floorThis is identical to the C function C<floor()>, returning the largestinteger value less than or equal to the numerical argument.=item fmodThis is identical to the C function C<fmod()>.	$r = modf($x, $y);It returns the remainder C<$r = $x - $n*$y>, where C<$n = trunc($x/$y)>.The C<$r> has the same sign as C<$x> and magnitude (absolute value)less than the magnitude of C<$y>.=item fopenUse method C<IO::File::open()> instead, or see L<perlfunc/open>.=item forkThis is identical to Perl's builtin C<fork()> functionfor duplicating the current process, see L<perlfunc/fork>and L<perlfork> if you are in Windows.=item fpathconfRetrieves the value of a configurable limit on a file or directory.  Thisuses file descriptors such as those obtained by calling C<POSIX::open>.The following will determine the maximum length of the longest allowablepathname on the filesystem which holds C</tmp/foo>.	$fd = POSIX::open( "/tmp/foo", &POSIX::O_RDONLY );	$path_max = POSIX::fpathconf( $fd, &POSIX::_PC_PATH_MAX );Returns C<undef> on failure.=item fprintffprintf() is C-specific, see L<perlfunc/printf> instead.=item fputcfputc() is C-specific, see L<perlfunc/print> instead.=item fputsfputs() is C-specific, see L<perlfunc/print> instead.=item freadfread() is C-specific, see L<perlfunc/read> instead.=item freefree() is C-specific.  Perl does memory management transparently.=item freopenfreopen() is C-specific, see L<perlfunc/open> instead.=item frexpReturn the mantissa and exponent of a floating-point number.	($mantissa, $exponent) = POSIX::frexp( 1.234e56 );=item fscanffscanf() is C-specific, use E<lt>E<gt> and regular expressions instead.=item fseekUse method C<IO::Seekable::seek()> instead, or see L<perlfunc/seek>.=item fsetposUse method C<IO::Seekable::setpos()> instead, or seek L<perlfunc/seek>.=item fstatGet file status.  This uses file descriptors such as those obtained bycalling C<POSIX::open>.  The data returned is identical to the data fromPerl's builtin C<stat> function.	$fd = POSIX::open( "foo", &POSIX::O_RDONLY );	@stats = POSIX::fstat( $fd );=item ftellUse method C<IO::Seekable::tell()> instead, or see L<perlfunc/tell>.=item fwritefwrite() is C-specific, see L<perlfunc/print> instead.=item getcThis is identical to Perl's builtin C<getc()> function,see L<perlfunc/getc>.=item getcharReturns one character from STDIN.  Identical to Perl's C<getc()>,see L<perlfunc/getc>.=item getcwdReturns the name of the current working directory.See also L<Cwd>.=item getegidReturns the effective group identifier.  Similar to Perl' s builtinvariable C<$(>, see L<perlvar/$EGID>.=item getenv

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲精品福利| 欧美色爱综合网| 久久精品国产**网站演员| 成人免费在线观看入口| 精品国产伦一区二区三区观看方式 | 懂色一区二区三区免费观看| 亚洲国产一区二区视频| 久久理论电影网| 欧美不卡123| 日韩美女视频在线| 一本一本久久a久久精品综合麻豆| 国产一区中文字幕| 蜜桃一区二区三区在线观看| 亚洲蜜臀av乱码久久精品| 国产人久久人人人人爽| 久久亚区不卡日本| 精品久久久久久最新网址| 91精品国产综合久久精品图片| 欧美最猛黑人xxxxx猛交| 在线观看亚洲精品视频| 欧美性感一类影片在线播放| 五月婷婷欧美视频| 亚洲成人在线网站| 日韩高清不卡一区二区三区| 午夜精品久久久久久久99樱桃| 一区二区三区精品视频在线| 亚洲制服丝袜一区| 亚洲福利一二三区| 国内久久精品视频| 国产精品自拍三区| 色狠狠桃花综合| 91精品国产手机| 日本一区免费视频| 一区二区三区在线视频免费| 日韩精品电影一区亚洲| 久久er精品视频| 91视频在线观看| 日韩免费性生活视频播放| 久久久国际精品| 日韩精品三区四区| 风间由美一区二区av101| 欧美综合久久久| 欧美日韩在线直播| 久久精品免视看| 亚洲国产精品一区二区久久| 国产精品一区三区| 欧美一区二区三区在线视频| 欧美美女一区二区在线观看| 欧美v日韩v国产v| 亚洲国产欧美另类丝袜| 国产999精品久久| 欧美xxxxxxxxx| 婷婷一区二区三区| 91丨国产丨九色丨pron| 久久婷婷成人综合色| 日日摸夜夜添夜夜添精品视频| 丁香激情综合国产| 欧美高清在线精品一区| 麻豆成人综合网| 69av一区二区三区| 丝袜亚洲精品中文字幕一区| 91丨九色丨蝌蚪富婆spa| 久久久五月婷婷| 国产一区二区三区在线看麻豆| 在线不卡免费av| 五月婷婷久久丁香| 欧美日韩高清影院| 午夜不卡av在线| 91精品国产手机| 美日韩一级片在线观看| 欧美一区二区啪啪| 麻豆91小视频| 久久综合色婷婷| 成人黄色一级视频| 亚洲私人影院在线观看| 色诱视频网站一区| 亚欧色一区w666天堂| 日韩女同互慰一区二区| 国产一区二区三区综合| 激情综合色播激情啊| 99久精品国产| 亚洲一区在线免费观看| 欧美高清hd18日本| 精品一区二区日韩| 国产精品日产欧美久久久久| 99国产欧美另类久久久精品| 一区二区成人在线观看| 7777精品伊人久久久大香线蕉经典版下载 | 在线观看三级视频欧美| 国产精品久久免费看| 色综合久久天天| 蜜桃视频一区二区三区| 国产日韩欧美麻豆| 欧美天堂亚洲电影院在线播放| 久久99热99| 亚洲精品免费播放| 26uuu亚洲婷婷狠狠天堂| 波多野结衣亚洲| 蜜臀av国产精品久久久久 | 欧美久久久久久久久久| 极品销魂美女一区二区三区| 亚洲电影一级黄| 久久综合色婷婷| 国产精品自产自拍| 最好看的中文字幕久久| 欧美疯狂做受xxxx富婆| k8久久久一区二区三区| 国产在线一区观看| 日韩黄色免费网站| 亚洲国产欧美在线人成| 亚洲欧美日本韩国| 国产欧美日韩另类一区| 久久综合色婷婷| 欧美电视剧在线看免费| 337p亚洲精品色噜噜噜| av成人老司机| 蜜臀99久久精品久久久久久软件| 亚洲柠檬福利资源导航| 国产精品狼人久久影院观看方式| 欧美成人精品3d动漫h| 91精品国产高清一区二区三区 | 欧美性生活久久| eeuss鲁片一区二区三区在线观看| 麻豆精品一区二区综合av| 日产国产欧美视频一区精品| 日韩精品五月天| 视频一区欧美精品| 人人爽香蕉精品| 精品中文字幕一区二区| 国产一区二区免费视频| 国产xxx精品视频大全| 97se亚洲国产综合自在线| 91免费观看视频在线| 成人av网址在线| 色狠狠av一区二区三区| 欧美人与禽zozo性伦| 日韩欧美色电影| 欧美激情综合在线| 亚洲国产精品久久久男人的天堂| 日韩极品在线观看| 国产99久久久国产精品免费看| 懂色一区二区三区免费观看| 精品视频在线免费观看| 久久奇米777| 视频一区二区三区中文字幕| 韩国v欧美v日本v亚洲v| 在线免费不卡电影| 久久免费视频色| 午夜成人免费视频| 成人免费毛片嘿嘿连载视频| 制服丝袜亚洲网站| 一色桃子久久精品亚洲| 韩日精品视频一区| 欧美日韩国产不卡| 中文字幕一区二区三区精华液| 国产精品动漫网站| 国产精品久久久久久久久免费相片 | 欧美男人的天堂一二区| 欧美激情中文字幕| 日日嗨av一区二区三区四区| 粉嫩高潮美女一区二区三区| 精品欧美久久久| 亚洲动漫第一页| 91美女在线观看| 亚洲欧洲av在线| 成人综合日日夜夜| 精品国产制服丝袜高跟| 日日骚欧美日韩| 欧美亚洲图片小说| 亚洲码国产岛国毛片在线| 国产精品一区二区久久精品爱涩| 日韩视频一区在线观看| 午夜精品久久久久久久| 欧美视频一二三区| 午夜视频一区二区| 精品日产卡一卡二卡麻豆| 青椒成人免费视频| 久久伊人蜜桃av一区二区| 精品一区二区三区蜜桃| 国产午夜一区二区三区| 成人av网站在线观看免费| 亚洲欧洲成人av每日更新| 色国产综合视频| 婷婷久久综合九色综合绿巨人| 在线综合视频播放| 韩国av一区二区三区| 日韩一区中文字幕| 欧美日韩亚洲综合一区| 精品综合久久久久久8888| 国产亲近乱来精品视频| 99久久久久久| 日韩av一区二| 久久久精品免费网站| 色久优优欧美色久优优| 精品中文字幕一区二区小辣椒| 中文字幕亚洲欧美在线不卡| 在线国产亚洲欧美| 国内精品久久久久影院一蜜桃| 国产精品久久午夜| 91在线云播放|