You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libsxmp/lib/mcache.c

44 lines
784 B
C

/*
* Secure Network Transport Layer Library implementation.
* This is a proprietary software. See COPYING for further details.
*
* (c) 2013-2014 Copyright Askele, inc. <http://askele.com>
* (c) 2013-2014 Copyright Askele Ingria, inc. <http://askele-ingria.com>
*/
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <pthread.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <tdata/usrtc.h>
#include <sntl/mcache.h>
int sntl_mcache_init(sntl_mcache_t *mc, size_t esize, int flags)
{
return EINVAL;
}
void* sntl_mcache_alloc(sntl_mcache_t *mc)
{
return NULL;
}
void sntl_mcache_free(void *p)
{
return;
}
void sntl_mcache_destroy(sntl_mcache_t *mc)
{
return;
}