003 File Manager
Current Path:
/usr/src/contrib/xz/src/xz
usr
/
src
/
contrib
/
xz
/
src
/
xz
/
📁
..
📄
args.c
(17.51 KB)
📄
args.h
(1.11 KB)
📄
coder.c
(25.4 KB)
📄
coder.h
(2.07 KB)
📄
file_io.c
(35.48 KB)
📄
file_io.h
(5.4 KB)
📄
hardware.c
(5.05 KB)
📄
hardware.h
(1.45 KB)
📄
list.c
(33.21 KB)
📄
list.h
(575 B)
📄
main.c
(9.34 KB)
📄
main.h
(972 B)
📄
message.c
(35.76 KB)
📄
message.h
(5.4 KB)
📄
mytime.c
(1.9 KB)
📄
mytime.h
(1.39 KB)
📄
options.c
(7.53 KB)
📄
options.h
(977 B)
📄
private.h
(1.31 KB)
📄
signals.c
(4.83 KB)
📄
signals.h
(1.44 KB)
📄
suffix.c
(10.12 KB)
📄
suffix.h
(1.08 KB)
📄
util.c
(6.98 KB)
📄
util.h
(4.35 KB)
📄
xz.1
(63.49 KB)
Editing: mytime.h
/////////////////////////////////////////////////////////////////////////////// // /// \file mytime.h /// \brief Time handling functions // // Author: Lasse Collin // // This file has been put into the public domain. // You can do whatever you want with this file. // /////////////////////////////////////////////////////////////////////////////// /// \brief Number of milliseconds to between LZMA_SYNC_FLUSHes /// /// If 0, timed flushing is disabled. Otherwise if no more input is available /// and not at the end of the file and at least opt_flush_timeout milliseconds /// has elapsed since the start of compression or the previous flushing /// (LZMA_SYNC_FLUSH or LZMA_FULL_FLUSH), set LZMA_SYNC_FLUSH to flush /// the pending data. extern uint64_t opt_flush_timeout; /// \brief Store the time when (de)compression was started /// /// The start time is also stored as the time of the first flush. extern void mytime_set_start_time(void); /// \brief Get the number of milliseconds since the operation started extern uint64_t mytime_get_elapsed(void); /// \brief Store the time of when compressor was flushed extern void mytime_set_flush_time(void); /// \brief Get the number of milliseconds until the next flush /// /// This returns -1 if no timed flushing is used. /// /// The return value is intended for use with poll(). extern int mytime_get_flush_timeout(void);
Upload File
Create Folder