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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? posix.pod

?? UNIX下perl實現代碼
?? 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品国产精品| 国产成人av电影免费在线观看| 色综合天天性综合| 亚洲欧美中日韩| 在线观看区一区二| 午夜精品久久一牛影视| 在线播放欧美女士性生活| 日韩电影免费一区| 精品国产免费视频| 成人激情文学综合网| 国产精品乱码一区二区三区软件| 色老综合老女人久久久| 天天影视涩香欲综合网| 精品免费视频.| www.综合网.com| 亚洲与欧洲av电影| 日韩欧美一级精品久久| 高清不卡在线观看| 亚洲一二三区在线观看| 欧美一区二区三区播放老司机| 久久99久国产精品黄毛片色诱| 欧美激情综合五月色丁香小说| 色偷偷成人一区二区三区91| 日韩国产欧美三级| 中文字幕欧美日韩一区| 在线观看亚洲一区| 九九视频精品免费| 亚洲精品中文在线影院| 日韩精品一区二区三区中文不卡| 成人午夜私人影院| 日韩激情中文字幕| 国产欧美日产一区| 7878成人国产在线观看| 成人综合激情网| 日本欧美一区二区在线观看| 国产精品国产精品国产专区不片| 在线播放国产精品二区一二区四区| 国产成人亚洲精品狼色在线 | 91免费看`日韩一区二区| 日韩国产成人精品| 亚洲女子a中天字幕| 欧美精品一区二区高清在线观看| 色婷婷av一区二区三区软件| 精品亚洲aⅴ乱码一区二区三区| 亚洲精选一二三| 国产免费观看久久| 欧美一区二区精品| 色综合天天狠狠| 国产不卡在线播放| 国内精品伊人久久久久av一坑| 亚洲小说欧美激情另类| 国产精品系列在线| 亚洲色图20p| 免费欧美高清视频| 亚洲国产欧美在线| 中文字幕一区二区三区在线播放 | 国产精品国产三级国产专播品爱网| 日韩一级在线观看| 在线观看欧美黄色| 91浏览器在线视频| 成人激情av网| 国产精品99久久久久久宅男| 麻豆精品在线播放| 奇米888四色在线精品| 一区二区三区在线免费播放| 亚洲欧洲无码一区二区三区| 国产欧美日韩另类视频免费观看| 久久尤物电影视频在线观看| 91精品久久久久久久99蜜桃| 欧美亚洲国产一区在线观看网站| 成人app软件下载大全免费| 国产成人免费视频网站 | 亚洲伦理在线精品| 中文字幕一区二区三区色视频| 国产日韩精品视频一区| 欧美韩国日本不卡| 中文字幕国产一区二区| 国产精品拍天天在线| 中文欧美字幕免费| 国产精品欧美久久久久无广告| 亚洲国产成人午夜在线一区 | 在线一区二区三区| 91成人国产精品| 欧美日韩在线亚洲一区蜜芽| 欧美日韩中文字幕精品| 在线播放欧美女士性生活| 欧美一区二区在线不卡| 日韩午夜在线观看| 久久亚洲影视婷婷| 国产日韩精品一区二区浪潮av| 国产精品狼人久久影院观看方式| 亚洲天堂免费看| 午夜伊人狠狠久久| 精品一区在线看| 波多野结衣中文字幕一区二区三区| 99久久久国产精品| 欧美日韩激情在线| 精品国产乱码久久久久久浪潮| 久久久久久久免费视频了| 中文字幕av一区 二区| 亚洲午夜久久久久久久久电影网 | 久久久久88色偷偷免费| 成人欧美一区二区三区1314| 亚洲福中文字幕伊人影院| 日本午夜一本久久久综合| 国产福利精品导航| 色婷婷一区二区三区四区| 在线播放国产精品二区一二区四区| 欧美白人最猛性xxxxx69交| 国产精品伦理在线| 亚洲成人手机在线| 国产一区二区伦理片| 色综合夜色一区| 日韩你懂的电影在线观看| 国产区在线观看成人精品| 亚洲综合在线电影| 久久99久久99精品免视看婷婷| 99麻豆久久久国产精品免费优播| 欧美日韩国产一区| 国产精品毛片大码女人 | 久久精品久久精品| 99久久精品情趣| 欧美成人国产一区二区| 亚洲视频狠狠干| 九九热在线视频观看这里只有精品 | 久久老女人爱爱| 日韩专区一卡二卡| 国产 欧美在线| 欧美欧美欧美欧美首页| 综合久久国产九一剧情麻豆| 久久99精品国产| 精品污污网站免费看| 欧美激情资源网| 精品无人区卡一卡二卡三乱码免费卡| 色哟哟国产精品| 国产精品你懂的在线| 久久99久久久欧美国产| 欧美在线一二三四区| 国产精品每日更新在线播放网址| 欧美aaa在线| 欧美日韩国产一级| 一区二区三区四区不卡视频| 国产激情91久久精品导航| 日韩免费在线观看| 日韩av在线免费观看不卡| 色老头久久综合| 亚洲精品一二三四区| proumb性欧美在线观看| 久久精品一区二区三区不卡牛牛| 日韩激情在线观看| 欧美日本一区二区三区| 亚洲精品乱码久久久久久 | 91麻豆123| 中文字幕一区二区三区乱码在线 | 一区二区在线观看视频| 成人国产精品免费观看视频| 久久九九影视网| 国产精品亚洲视频| 日韩一级完整毛片| 日本亚洲免费观看| 91精品国产高清一区二区三区蜜臀 | 中文字幕一区二区三区在线不卡| 国产精品亚洲第一区在线暖暖韩国| 精品国产乱码久久久久久久久| 蜜桃视频一区二区| 日韩欧美精品在线| 蜜桃精品视频在线观看| 欧美一区二区三区视频免费| 调教+趴+乳夹+国产+精品| 欧美日韩夫妻久久| 首页亚洲欧美制服丝腿| 欧美一区二区精品| 精品综合久久久久久8888| 久久久精品一品道一区| 国产成人综合视频| 国产精品久久看| av网站免费线看精品| 亚洲永久精品国产| 欧美日本一区二区| 老司机免费视频一区二区三区| 精品国产在天天线2019| 国产白丝精品91爽爽久久 | 国产网站一区二区| 成人福利电影精品一区二区在线观看| 国产亚洲自拍一区| 91一区二区在线观看| 一区二区三区欧美亚洲| 在线电影一区二区三区| 久热成人在线视频| 国产欧美精品一区aⅴ影院 | 在线观看av不卡| 美国毛片一区二区三区| 国产精品五月天| 在线观看日韩高清av| 久久国产精品无码网站| 国产精品视频在线看| 欧美性大战xxxxx久久久| 国内精品伊人久久久久av影院| 自拍偷自拍亚洲精品播放| 欧美性一二三区|