repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r954: Improve icons of the liveaudio and livevideo effects.
[cinelerra_cv.git]
/
cinelerra
/
test.C
blob
759121f11357d1a318e20a9d00c5342d4b254493
1
#include "threadfork.h"
2
3
#include <stdio.h>
4
#include <stdlib.h>
5
#include <unistd.h>
6
7
8
9
int main()
10
{
11
ThreadFork *test;
12
test = new ThreadFork;
13
test->start_command("ls", 0);
14
delete test;
15
}