first commit
This commit is contained in:
7
examples/Makefile
Normal file
7
examples/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
CC = gcc
|
||||
|
||||
all: ../dist/example_pool
|
||||
|
||||
../dist/example_pool: pool/*.c ../dist/libmp.so
|
||||
mkdir -pv ../dist
|
||||
$(CC) -L../dist $< -lmp -o $@
|
28
examples/pool/main.c
Normal file
28
examples/pool/main.c
Normal file
@ -0,0 +1,28 @@
|
||||
#include "../../include/all.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
int ret = EXIT_FAILURE;
|
||||
|
||||
if(argc != 2){
|
||||
printf("usage: %s <pool url>\n", argv[0]);
|
||||
return ret;
|
||||
}
|
||||
|
||||
lm_ctx_t ctx;
|
||||
lm_ctx_init(&ctx);
|
||||
|
||||
ctx.debug = true;
|
||||
|
||||
if(!lm_ctx_pool_add(&ctx, "test", argv[1])){
|
||||
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
||||
goto end;
|
||||
}
|
||||
|
||||
ret = EXIT_SUCCESS;
|
||||
|
||||
end:
|
||||
lm_ctx_free(&ctx);
|
||||
return ret;
|
||||
}
|
Reference in New Issue
Block a user