#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <errno.h>
#include <sys/queue.h>
static int
lcore_hello(__attribute__((unused)) void *arg)
{
    unsigned lcore_id;
    printf("hello from core %u\n", lcore_id);
    return 0;
}
int
main(int argc, char **argv)
{
    int ret;
    unsigned lcore_id;
    if (ret < 0)
    
    }
    
    lcore_hello(NULL);
    return 0;
}