Skip to content

Commit

Permalink
More updating of copyright info, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Sep 4, 2017
1 parent 1965c23 commit bddac53
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions examples/kingsley/libkingsley.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Heap Layers: An Extensible Memory Allocation Infrastructure Heap Layers: An Extensible Memory Allocation Infrastructure
Copyright (C) 2000-2003 by Emery Berger Copyright (C) 2000-2017 by Emery Berger
http://www.cs.umass.edu/~emery http://www.emeryberger.com
emery@cs.umass.edu emery@cs.umass.edu
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
Expand All @@ -27,7 +27,7 @@
/* /*
* @file libkingsley.cpp * @file libkingsley.cpp
* @brief This file replaces malloc etc. in your application. * @brief This file replaces malloc etc. in your application.
* @author Emery Berger <http://www.cs.umass.edu/~emery> * @author Emery Berger <http://www.emeryberger.com>
*/ */


#include <stdlib.h> #include <stdlib.h>
Expand All @@ -44,7 +44,7 @@ class TopHeap : public SizeHeap<UniqueHeap<ZoneHeap<MmapHeap, 65536> > > {};
class TheCustomHeapType : class TheCustomHeapType :
public ANSIWrapper<KingsleyHeap<AdaptHeap<DLList, TopHeap>, TopHeap> > {}; public ANSIWrapper<KingsleyHeap<AdaptHeap<DLList, TopHeap>, TopHeap> > {};


inline static TheCustomHeapType * getCustomHeap (void) { inline static TheCustomHeapType * getCustomHeap() {
static char thBuf[sizeof(TheCustomHeapType)]; static char thBuf[sizeof(TheCustomHeapType)];
static TheCustomHeapType * th = new (thBuf) TheCustomHeapType; static TheCustomHeapType * th = new (thBuf) TheCustomHeapType;
return th; return th;
Expand Down
2 changes: 1 addition & 1 deletion heaps/general/kingsleyheap.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Heap Layers: An Extensible Memory Allocation Infrastructure Heap Layers: An Extensible Memory Allocation Infrastructure
Copyright (C) 2000-2015 by Emery Berger Copyright (C) 2000-2017 by Emery Berger
http://www.emeryberger.com http://www.emeryberger.com
emery@cs.umass.edu emery@cs.umass.edu
Expand Down
4 changes: 2 additions & 2 deletions wrappers/mmapwrapper.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Heap Layers: An Extensible Memory Allocation Infrastructure Heap Layers: An Extensible Memory Allocation Infrastructure
Copyright (C) 2000-2012 by Emery Berger Copyright (C) 2000-2017 by Emery Berger
http://www.cs.umass.edu/~emery http://www.emeryberger.com
emery@cs.umass.edu emery@cs.umass.edu
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
Expand Down

0 comments on commit bddac53

Please sign in to comment.