| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/sysutils/fusefs-libs3/work/fuse-3.12.0/example/ |
Upload File : |
examples = [ 'passthrough', 'passthrough_fh',
'hello', 'hello_ll', 'printcap',
'ioctl_client', 'poll_client', 'ioctl',
'cuse', 'cuse_client' ]
if not platform.endswith('bsd') and platform != 'dragonfly'
examples += 'passthrough_ll'
# According to Conrad Meyer <cem@freebsd.org>, FreeBSD doesn't
# support mounting files, This is enforced in vfs_domount_first()
# with the v_type != VDIR check.
examples += [ 'null' ]
endif
threaded_examples = [ 'notify_inval_inode',
'invalidate_path',
'notify_store_retrieve',
'notify_inval_entry',
'poll' ]
foreach ex : examples
executable(ex, ex + '.c',
dependencies: [ libfuse_dep ],
install: false)
endforeach
foreach ex : threaded_examples
executable(ex, ex + '.c',
dependencies: [ thread_dep, libfuse_dep ],
install: false)
endforeach
if not platform.endswith('bsd') and platform != 'dragonfly' and add_languages('cpp', required : false)
executable('passthrough_hp', 'passthrough_hp.cc',
dependencies: [ thread_dep, libfuse_dep ],
install: false)
endif
# TODO: Link passthrough_fh with ulockmgr if available