| 55 | extern "C" |
| 56 | #endif |
| 57 | int lmpfs_plugin_init(lmpfs_handle_t eng) { |
| 58 | int r1 = lmpfs_plugin_add_file(eng, "hello.txt", hello_producer); |
| 59 | int r2 = lmpfs_plugin_add_file(eng, "pid_count.txt", pid_count_producer); |
| 60 | return (r1 == 0 && r2 == 0) ? 0 : -1; |
| 61 | } |
nothing calls this directly
no test coverage detected