view sys.c @ 22:dc3b1d4fe835

64bit version fix.
author tkaito
date Mon, 13 Dec 2010 18:18:06 +0900
parents 01387a2e419e
children
line wrap: on
line source

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libxml/parser.h>
#include "object.h"
#include "sys.h"

#define ALIGN_16BYTE 16

int malloc_align16(void *free, void *aligned, int size)
{
  char *index;
  unsigned int *f=(unsigned int *)free,*a=(unsigned int *)aligned;

  if (free == NULL || aligned == NULL || size <= 0) return(-1);

  index = (char *)malloc(size + ALIGN_16BYTE);
  if (index == NULL)
    {
      return(-1);
    }

  *f = *a = (unsigned long)index;
  if (((unsigned long)index % ALIGN_16BYTE) != 0)
    {
      index += ALIGN_16BYTE - ((unsigned long)index % ALIGN_16BYTE);
      *a = (unsigned long)index;
    }
  return(0);
}