Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- [file-server.cpp](file-server_8cpp.html)
A simple HTTP file server using `condy::async_splice` for asynchronous file and network IO.

- [fuse-prime-fs.cpp](fuse-prime-fs_8cpp.html)
A FUSE file system server using `condy::async_uring_cmd` for FUSE-over-io_uring. It serves a dynamic tree over the integers 2..n: prime numbers are regular files holding their own value, and composite numbers are directories recursively containing all smaller numbers.

- [link-cp.cpp](link-cp_8cpp.html)
Implements concurrent file copying using features like fixed file descriptors, fixed buffers, and link operations, supporting `O_DIRECT` IO. Achieves up to 2x performance improvement compared to `cp`.

Expand Down
3 changes: 3 additions & 0 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ target_link_libraries(queue-condy-futex PRIVATE condy uring)
add_executable(ublk-loop ublk-loop.cpp)
target_link_libraries(ublk-loop PRIVATE condy uring)

add_executable(fuse-prime-fs fuse-prime-fs.cpp)
target_link_libraries(fuse-prime-fs PRIVATE condy uring)

if(BUILD_MODULE)
add_executable(module-hello module-hello.cpp)
target_link_libraries(module-hello PRIVATE condy_module uring)
Expand Down
Loading
Loading