integration/gwnavgenerationglue/tbbtlsalloc.h Source File

tbbtlsalloc.h
Go to the documentation of this file.
1 /*
2 * Copyright 2016 Autodesk, Inc. All rights reserved.
3 * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4 * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5 */
6 
7 #pragma once
8 
10 
11 namespace KyGlue
12 {
13 
18 class TbbTlsAlloc : public Kaim::ITlsAlloc
19 {
20 public:
21  virtual ~TbbTlsAlloc() {}
22  virtual void* Alloc(Kaim::UPInt size);
23  virtual void Free(void* ptr);
24  virtual void* Realloc(void* oldPtr, Kaim::UPInt newSize);
25 };
26 
27 
28 }
29 
30 
This implementation of Kaim::ITlsAlloc uses the scalable memory allocation functions provided with th...
Definition: tbbtlsalloc.h:18
Definition: defaultgeneratorglue.h:14