%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python2.7/lib-dynload/
Upload File :
Create Path :
Current File : //usr/local/lib/python2.7/lib-dynload/fcntl.so

ELF	>  @H1@8
@@@@00       > >   P PPP>P>Rtd  > >Ptd<<QtdpppFreeBSD
 !"0EQ`s+=Udu,,
 (z
	
_fini_init_Jv_RegisterClasses__cxa_finalizePyDict_SetItemStringPyErr_ClearPyErr_OccurredPyErr_SetFromErrnoPyErr_SetStringPyEval_RestoreThreadPyEval_SaveThreadPyExc_IOErrorPyExc_ValueErrorPyInt_AsLongPyInt_FromLongPyModule_GetDictPyObject_AsFileDescriptorPyString_FromStringAndSizePy_InitModule4_64_PyArg_ParseTuple_SizeT_Py_NoneStruct__stack_chk_fail__stack_chk_guardfcntlflockinitfcntlioctlmemcpylibc.so.7FBSD_1.0/usr/local/lib:/usr/local/liblibthr.so.3libpython2.7.so.1H>p  P P0P8P%HPQPPRXP0'hPpTpPxP@*P ZPP*PZ??@
@@@___ _(_
0_8_@_H_P_	X_`_h_p_x_______fcntllockfF_GETLKF_SETOWNFD_CLOEXECO&is#:fcntlF_SETLKF_DUPFDF_SETLKWLOCK_UNflockLOCK_NBO&i|I;fcntl requires a file or file descriptor, an integer and optionally a third integer or a stringO&ks#:ioctlO&k|i;ioctl requires a file or file descriptor, an integer and optionally an integer or buffer argumentF_RDLCKfcntl string arg too longF_SETFDLOCK_EXF_SETFLF_UNLCKO&kw#|i:ioctlF_GETFLF_GETOWNunrecognized lockf argumentLOCK_SHioctlioctl string arg too longO&i:flockO&i|OOi:lockfFASYNCF_GETFDF_WRLCK;8T<DzRx,AC
CAK,L`AC
NA,|AC
NA,AC
IA, _AC
ILA$P$AC
B]UHSPH=tH=/Hf.HHHHrHH[]@UHH=|tH=t
H=]K]UHAVSH=H5{/H01A'HH&Iƿ)HHH5PLHoHu
HCHP0HLHH5LH/Hu
HCHP0HHH5qLHHu
HCHP0iHHH5#LH[Hu
HCHP01,HHH5LHrHu
HCHP0
HOHH5ZLH
2Hu
HCHP0
HHH5xLH
Hu
HCHP0l
HHH5fLH^
Hu
HCHP0,
HHH5LH
rHu
HCHP0	HOHH5eLH	2Hu
HCHP0	HHH5MLH	Hu
HCHP0
l	HHH5LH^	Hu
HCHP0,	HHH5.LH	rHu
HCHP0HOHH5mLH2Hu
HCHP0HHH5VLHHu
HCHP0lHHH5LH^Hu
HCHP0,HHH5LHxvHu
HCHP0@HtWHH5[LHx>Hu
HCHP0HtHH5FLHxHt[A^]HCH[A^]`0UHAWAVATSH0HL%TI$HEHH$H5HsHLLH1Dt/HHHH8H5&,DžH5HE1HLLH1IƋ1LxctUHLLINjL1LxHHIHH8E1I$H;EuLH0[A\A^A_]@UHAWAVATSH@HL%I$HEDžLLH5HHLLH1ARAVHt`HHHHH9H1ÃFHH5DH$HLLH1AVHHH}dHLLHƄINjHL17LT;HHDH8H5mE1:pDžH5tHHE1HLLH19IƋH1L2HHHHƄIƋHH11Lt#HHHHxt''HH8E1HHII$H;EuLH@[A\A^A_]fUHAWAVSHHL=IHEH5
H1HMLE1t?IƋ}܋uLLx
HoHHZH81IH;EuHH[A^A_]@UHAWAVSHHHL=	IHEEHEHELUL]H5XH1HMLELM1ARASHMft-fu$fuHH8H5fEW)EH}HtNHEUHuqH}Ht2HE9HuUEfEIƋ}1E@ƃHU1yLx
HHHH81IH;EuHHH[A^A_]UHSPHx	1H[]UHSPHHHHHrHH[]HHHkH522%42@%22h%*2h%"2h%2h%2h%
2h%2h%1hp%1h`%1h	P%1h
@%1h0%1h %1h
%1h%1h%1h%1h%1h%1h%1h	o
^
oH>,
,o@o|oThis module performs file control and I/O control on file 
descriptors.  It is an interface to the fcntl() and ioctl() Unix
routines.  File descriptors can be obtained with the fileno() method of
a file or socket object.fcntl(fd, op, [arg])

Perform the operation op on file descriptor fd.  The values used
for op are operating system dependent, and are available
as constants in the fcntl module, using the same names as used in
the relevant C header files.  The argument arg is optional, and
defaults to 0; it may be an int or a string.  If arg is given as a string,
the return value of fcntl is a string of that length, containing the
resulting value put in the arg buffer by the operating system.  The length
of the arg string is not allowed to exceed 1024 bytes.  If the arg given
is an integer or if none is specified, the result value is an integer
corresponding to the return value of the fcntl call in the C code.ioctl(fd, op[, arg[, mutate_flag]])

Perform the operation op on file descriptor fd.  The values used for op
are operating system dependent, and are available as constants in the
fcntl or termios library modules, using the same names as used in the
relevant C header files.

The argument arg is optional, and defaults to 0; it may be an int or a
buffer containing character data (most likely a string or an array). 

If the argument is a mutable buffer (such as an array) and if the
mutate_flag argument (which is only allowed in this case) is true then the
buffer is (in effect) passed to the operating system and changes made by
the OS will be reflected in the contents of the buffer after the call has
returned.  The return value is the integer returned by the ioctl system
call.

If the argument is a mutable buffer and the mutable_flag argument is not
passed or is false, the behavior is as if a string had been passed.  This
behavior will change in future releases of Python.

If the argument is an immutable buffer (most likely a string) then a copy
of the buffer is passed to the operating system and the return value is a
string of the same length containing whatever the operating system put in
the buffer.  The length of the arg buffer in this case is not allowed to
exceed 1024 bytes.

If the arg given is an integer or if none is specified, the result value is
an integer corresponding to the return value of the ioctl call in the C
code.flock(fd, operation)

Perform the lock operation op on file descriptor fd.  See the Unix 
manual page for flock(2) for details.  (On some systems, this function is
emulated using fcntl().)lockf (fd, operation, length=0, start=0, whence=0)

This is essentially a wrapper around the fcntl() locking calls.  fd is the
file descriptor of the file to lock or unlock, and operation is one of the
following values:

    LOCK_UN - unlock
    LOCK_SH - acquire a shared lock
    LOCK_EX - acquire an exclusive lock

When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with
LOCK_NB to avoid blocking on lock acquisition.  If LOCK_NB is used and the
lock cannot be acquired, an IOError will be raised and the exception will
have an errno attribute set to EACCES or EAGAIN (depending on the operating
system -- for portability, check for either value).

length is the number of bytes to lock, with the default meaning to lock to
EOF.  start is the byte offset, relative to whence, to that the lock
starts.  whence is as with fileobj.seek(), specifically:

    0 - relative to the start of the file (SEEK_SET)
    1 - relative to the current buffer position (SEEK_CUR)
    2 - relative to the end of the file (SEEK_END)P>,,,--&-6-F-V-f-v---------..FreeBSD clang version 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe)Linker: LLD 11.0.1 (FreeBSD llvmorg-11.0.1-0-g43ff75f2c3fe-1300007)$FreeBSD$.shstrtab.note.tag.dynsym.gnu.version.gnu.version_r.gnu.hash.hash.dynstr.rela.dyn.rela.plt.rodata.eh_frame_hdr.eh_frame.text.init.fini.plt.ctors.dtors.jcr.init_array.dynamic.got.data.got.plt.commentppo@@:+o|| :o(DJRB\B

f2n<|4   |,,,` > 0>0@>@H>HP>P?0 P  ^.0/b0

Zerion Mini Shell 1.0