libsxmp/lib/mcache.c

44 lines
784 B
C
Raw Normal View History

2014-12-21 01:46:27 +02:00
/*
* 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;
}