mbed TLS library

Dependents:   HTTPClient-SSL WS_SERVER

Committer:
ansond
Date:
Thu Jun 11 03:27:03 2015 +0000
Revision:
0:137634ff4186
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:137634ff4186 1 /**
ansond 0:137634ff4186 2 * \file memory.h
ansond 0:137634ff4186 3 *
ansond 0:137634ff4186 4 * \brief Memory allocation layer
ansond 0:137634ff4186 5 *
ansond 0:137634ff4186 6 * \deprecated Use the platform layer instead
ansond 0:137634ff4186 7 *
ansond 0:137634ff4186 8 * Copyright (C) 2006-2014, ARM Limited, All Rights Reserved
ansond 0:137634ff4186 9 *
ansond 0:137634ff4186 10 * This file is part of mbed TLS (https://tls.mbed.org)
ansond 0:137634ff4186 11 *
ansond 0:137634ff4186 12 * This program is free software; you can redistribute it and/or modify
ansond 0:137634ff4186 13 * it under the terms of the GNU General Public License as published by
ansond 0:137634ff4186 14 * the Free Software Foundation; either version 2 of the License, or
ansond 0:137634ff4186 15 * (at your option) any later version.
ansond 0:137634ff4186 16 *
ansond 0:137634ff4186 17 * This program is distributed in the hope that it will be useful,
ansond 0:137634ff4186 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ansond 0:137634ff4186 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ansond 0:137634ff4186 20 * GNU General Public License for more details.
ansond 0:137634ff4186 21 *
ansond 0:137634ff4186 22 * You should have received a copy of the GNU General Public License along
ansond 0:137634ff4186 23 * with this program; if not, write to the Free Software Foundation, Inc.,
ansond 0:137634ff4186 24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
ansond 0:137634ff4186 25 */
ansond 0:137634ff4186 26 #ifndef POLARSSL_MEMORY_H
ansond 0:137634ff4186 27 #define POLARSSL_MEMORY_H
ansond 0:137634ff4186 28
ansond 0:137634ff4186 29 #if !defined(POLARSSL_CONFIG_FILE)
ansond 0:137634ff4186 30 #include "config.h"
ansond 0:137634ff4186 31 #else
ansond 0:137634ff4186 32 #include POLARSSL_CONFIG_FILE
ansond 0:137634ff4186 33 #endif
ansond 0:137634ff4186 34
ansond 0:137634ff4186 35 #include <stdlib.h>
ansond 0:137634ff4186 36
ansond 0:137634ff4186 37 #include "platform.h"
ansond 0:137634ff4186 38 #include "memory_buffer_alloc.h"
ansond 0:137634ff4186 39
ansond 0:137634ff4186 40 #if ! defined(POLARSSL_DEPRECATED_REMOVED)
ansond 0:137634ff4186 41 #if defined(POLARSSL_DEPRECATED_WARNING)
ansond 0:137634ff4186 42 #define DEPRECATED __attribute__((deprecated))
ansond 0:137634ff4186 43 #else
ansond 0:137634ff4186 44 #define DEPRECATED
ansond 0:137634ff4186 45 #endif
ansond 0:137634ff4186 46 /**
ansond 0:137634ff4186 47 * \brief Set malloc() / free() callback
ansond 0:137634ff4186 48 *
ansond 0:137634ff4186 49 * \deprecated Use platform_set_malloc_free instead
ansond 0:137634ff4186 50 */
ansond 0:137634ff4186 51 int memory_set_own( void * (*malloc_func)( size_t ),
ansond 0:137634ff4186 52 void (*free_func)( void * ) ) DEPRECATED;
ansond 0:137634ff4186 53 int memory_set_own( void * (*malloc_func)( size_t ),
ansond 0:137634ff4186 54 void (*free_func)( void * ) )
ansond 0:137634ff4186 55 {
ansond 0:137634ff4186 56 return platform_set_malloc_free( malloc_func, free_func );
ansond 0:137634ff4186 57 }
ansond 0:137634ff4186 58 #undef DEPRECATED
ansond 0:137634ff4186 59 #endif /* POLARSSL_DEPRECATED_REMOVED */
ansond 0:137634ff4186 60
ansond 0:137634ff4186 61
ansond 0:137634ff4186 62 #endif /* memory.h */
ansond 0:137634ff4186 63