- or download this
#include <pthread.h>
#include "EXTERN.h"
...
void *rv;
pthread_join(tid, &rv);
- or download this
package My;
...
XSLoader::load('My', $VERSION);
1;
- or download this
use ExtUtils::MakeMaker;
...
VERSION_FROM => 'lib/My.pm',
LIBS => ['-lpthread'],
);
- or download this
use blib;
use My;
My::test_thread("Just another XS hacker");