Mercurial > hg > vamp-plugin-load-checker
comparison helper.cpp @ 2:2288c1d05c28
Simple Qt-based class to invoke the helper
author | Chris Cannam |
---|---|
date | Tue, 12 Apr 2016 17:38:57 +0100 |
parents | fbffc249990c |
children | 6f891a9c6434 |
comparison
equal
deleted
inserted
replaced
1:fbffc249990c | 2:2288c1d05c28 |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
1 | 2 |
2 /** | 3 /** |
3 * Plugin Load Checker Helper | 4 * Plugin Load Checker Helper |
4 * | 5 * |
5 * This program accepts the name of a descriptor function as its only | 6 * This program accepts the name of a descriptor function as its only |
18 * SUCCESS|/path/to/libname.so| | 19 * SUCCESS|/path/to/libname.so| |
19 * | 20 * |
20 * Output line for failed load of library libname.so: | 21 * Output line for failed load of library libname.so: |
21 * FAILURE|/path/to/libname.so|Reason for failure if available | 22 * FAILURE|/path/to/libname.so|Reason for failure if available |
22 * | 23 * |
23 * Note that sometimes plugins will crash completely on load, bringing | 24 * Sometimes plugins will crash completely on load, bringing down this |
24 * down this program with them. If the program exits before all listed | 25 * program with them. If the program exits before all listed plugins |
25 * plugins have been checked, this means that the plugin following the | 26 * have been checked, this means that the plugin following the last |
26 * last reported one has crashed. Typically the caller may want to run | 27 * reported one has crashed. Typically the caller may want to run it |
27 * it again, omitting that plugin. | 28 * again, omitting that plugin. |
28 */ | 29 */ |
29 | 30 |
30 #ifdef _WIN32 | 31 #ifdef _WIN32 |
31 #include <windows.h> | 32 #include <windows.h> |
32 #include <process.h> | 33 #include <process.h> |