Skip to content

Commit 76513c3

Browse files
committed
Initial commit
0 parents  commit 76513c3

File tree

10 files changed

+1048
-0
lines changed

10 files changed

+1048
-0
lines changed

.gitignore

Lines changed: 362 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,362 @@
1+
## Output files
2+
## ------------
3+
*.log
4+
*.csv
5+
6+
## VS Code
7+
## -------
8+
.vscode/
9+
.project
10+
.classpath
11+
12+
13+
## Ignore Visual Studio temporary files, build results, and
14+
## files generated by popular Visual Studio add-ons.
15+
##
16+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
17+
18+
# User-specific files
19+
*.rsuser
20+
*.suo
21+
*.user
22+
*.userosscache
23+
*.sln.docstates
24+
25+
# User-specific files (MonoDevelop/Xamarin Studio)
26+
*.userprefs
27+
28+
# Mono auto generated files
29+
mono_crash.*
30+
31+
# Build results
32+
[Dd]ebug/
33+
[Dd]ebugPublic/
34+
[Rr]elease/
35+
[Rr]eleases/
36+
x64/
37+
x86/
38+
[Aa][Rr][Mm]/
39+
[Aa][Rr][Mm]64/
40+
bld/
41+
[Bb]in/
42+
[Oo]bj/
43+
[Ll]og/
44+
[Ll]ogs/
45+
46+
# Visual Studio 2015/2017 cache/options directory
47+
.vs/
48+
# Uncomment if you have tasks that create the project's static files in wwwroot
49+
#wwwroot/
50+
51+
# Visual Studio 2017 auto generated files
52+
Generated\ Files/
53+
54+
# MSTest test Results
55+
[Tt]est[Rr]esult*/
56+
[Bb]uild[Ll]og.*
57+
58+
# NUnit
59+
*.VisualState.xml
60+
TestResult.xml
61+
nunit-*.xml
62+
63+
# Build Results of an ATL Project
64+
[Dd]ebugPS/
65+
[Rr]eleasePS/
66+
dlldata.c
67+
68+
# Benchmark Results
69+
BenchmarkDotNet.Artifacts/
70+
71+
# .NET Core
72+
project.lock.json
73+
project.fragment.lock.json
74+
artifacts/
75+
76+
# StyleCop
77+
StyleCopReport.xml
78+
79+
# Files built by Visual Studio
80+
*_i.c
81+
*_p.c
82+
*_h.h
83+
*.ilk
84+
*.meta
85+
*.obj
86+
*.iobj
87+
*.pch
88+
*.pdb
89+
*.ipdb
90+
*.pgc
91+
*.pgd
92+
*.rsp
93+
*.sbr
94+
*.tlb
95+
*.tli
96+
*.tlh
97+
*.tmp
98+
*.tmp_proj
99+
*_wpftmp.csproj
100+
*.log
101+
*.vspscc
102+
*.vssscc
103+
.builds
104+
*.pidb
105+
*.svclog
106+
*.scc
107+
108+
# Chutzpah Test files
109+
_Chutzpah*
110+
111+
# Visual C++ cache files
112+
ipch/
113+
*.aps
114+
*.ncb
115+
*.opendb
116+
*.opensdf
117+
*.sdf
118+
*.cachefile
119+
*.VC.db
120+
*.VC.VC.opendb
121+
122+
# Visual Studio profiler
123+
*.psess
124+
*.vsp
125+
*.vspx
126+
*.sap
127+
128+
# Visual Studio Trace Files
129+
*.e2e
130+
131+
# TFS 2012 Local Workspace
132+
$tf/
133+
134+
# Guidance Automation Toolkit
135+
*.gpState
136+
137+
# ReSharper is a .NET coding add-in
138+
_ReSharper*/
139+
*.[Rr]e[Ss]harper
140+
*.DotSettings.user
141+
142+
# TeamCity is a build add-in
143+
_TeamCity*
144+
145+
# DotCover is a Code Coverage Tool
146+
*.dotCover
147+
148+
# AxoCover is a Code Coverage Tool
149+
.axoCover/*
150+
!.axoCover/settings.json
151+
152+
# Visual Studio code coverage results
153+
*.coverage
154+
*.coveragexml
155+
156+
# NCrunch
157+
_NCrunch_*
158+
.*crunch*.local.xml
159+
nCrunchTemp_*
160+
161+
# MightyMoose
162+
*.mm.*
163+
AutoTest.Net/
164+
165+
# Web workbench (sass)
166+
.sass-cache/
167+
168+
# Installshield output folder
169+
[Ee]xpress/
170+
171+
# DocProject is a documentation generator add-in
172+
DocProject/buildhelp/
173+
DocProject/Help/*.HxT
174+
DocProject/Help/*.HxC
175+
DocProject/Help/*.hhc
176+
DocProject/Help/*.hhk
177+
DocProject/Help/*.hhp
178+
DocProject/Help/Html2
179+
DocProject/Help/html
180+
181+
# Click-Once directory
182+
publish/
183+
184+
# Publish Web Output
185+
*.[Pp]ublish.xml
186+
*.azurePubxml
187+
# Note: Comment the next line if you want to checkin your web deploy settings,
188+
# but database connection strings (with potential passwords) will be unencrypted
189+
*.pubxml
190+
*.publishproj
191+
192+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
193+
# checkin your Azure Web App publish settings, but sensitive information contained
194+
# in these scripts will be unencrypted
195+
PublishScripts/
196+
197+
# NuGet Packages
198+
*.nupkg
199+
# NuGet Symbol Packages
200+
*.snupkg
201+
# The packages folder can be ignored because of Package Restore
202+
**/[Pp]ackages/*
203+
# except build/, which is used as an MSBuild target.
204+
!**/[Pp]ackages/build/
205+
# Uncomment if necessary however generally it will be regenerated when needed
206+
#!**/[Pp]ackages/repositories.config
207+
# NuGet v3's project.json files produces more ignorable files
208+
*.nuget.props
209+
*.nuget.targets
210+
211+
# Microsoft Azure Build Output
212+
csx/
213+
*.build.csdef
214+
215+
# Microsoft Azure Emulator
216+
ecf/
217+
rcf/
218+
219+
# Windows Store app package directories and files
220+
AppPackages/
221+
BundleArtifacts/
222+
Package.StoreAssociation.xml
223+
_pkginfo.txt
224+
*.appx
225+
*.appxbundle
226+
*.appxupload
227+
228+
# Visual Studio cache files
229+
# files ending in .cache can be ignored
230+
*.[Cc]ache
231+
# but keep track of directories ending in .cache
232+
!?*.[Cc]ache/
233+
234+
# Others
235+
ClientBin/
236+
~$*
237+
*~
238+
*.dbmdl
239+
*.dbproj.schemaview
240+
*.jfm
241+
*.pfx
242+
*.publishsettings
243+
orleans.codegen.cs
244+
245+
# Including strong name files can present a security risk
246+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
247+
#*.snk
248+
249+
# Since there are multiple workflows, uncomment next line to ignore bower_components
250+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
251+
#bower_components/
252+
253+
# RIA/Silverlight projects
254+
Generated_Code/
255+
256+
# Backup & report files from converting an old project file
257+
# to a newer Visual Studio version. Backup files are not needed,
258+
# because we have git ;-)
259+
_UpgradeReport_Files/
260+
Backup*/
261+
UpgradeLog*.XML
262+
UpgradeLog*.htm
263+
ServiceFabricBackup/
264+
*.rptproj.bak
265+
266+
# SQL Server files
267+
*.mdf
268+
*.ldf
269+
*.ndf
270+
271+
# Business Intelligence projects
272+
*.rdl.data
273+
*.bim.layout
274+
*.bim_*.settings
275+
*.rptproj.rsuser
276+
*- [Bb]ackup.rdl
277+
*- [Bb]ackup ([0-9]).rdl
278+
*- [Bb]ackup ([0-9][0-9]).rdl
279+
280+
# Microsoft Fakes
281+
FakesAssemblies/
282+
283+
# GhostDoc plugin setting file
284+
*.GhostDoc.xml
285+
286+
# Node.js Tools for Visual Studio
287+
.ntvs_analysis.dat
288+
node_modules/
289+
290+
# Visual Studio 6 build log
291+
*.plg
292+
293+
# Visual Studio 6 workspace options file
294+
*.opt
295+
296+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
297+
*.vbw
298+
299+
# Visual Studio LightSwitch build output
300+
**/*.HTMLClient/GeneratedArtifacts
301+
**/*.DesktopClient/GeneratedArtifacts
302+
**/*.DesktopClient/ModelManifest.xml
303+
**/*.Server/GeneratedArtifacts
304+
**/*.Server/ModelManifest.xml
305+
_Pvt_Extensions
306+
307+
# Paket dependency manager
308+
.paket/paket.exe
309+
paket-files/
310+
311+
# FAKE - F# Make
312+
.fake/
313+
314+
# CodeRush personal settings
315+
.cr/personal
316+
317+
# Python Tools for Visual Studio (PTVS)
318+
__pycache__/
319+
*.pyc
320+
321+
# Cake - Uncomment if you are using it
322+
# tools/**
323+
# !tools/packages.config
324+
325+
# Tabs Studio
326+
*.tss
327+
328+
# Telerik's JustMock configuration file
329+
*.jmconfig
330+
331+
# BizTalk build output
332+
*.btp.cs
333+
*.btm.cs
334+
*.odx.cs
335+
*.xsd.cs
336+
337+
# OpenCover UI analysis results
338+
OpenCover/
339+
340+
# Azure Stream Analytics local run output
341+
ASALocalRun/
342+
343+
# MSBuild Binary and Structured Log
344+
*.binlog
345+
346+
# NVidia Nsight GPU debugger configuration file
347+
*.nvuser
348+
349+
# MFractors (Xamarin productivity tool) working folder
350+
.mfractor/
351+
352+
# Local History for Visual Studio
353+
.localhistory/
354+
355+
# BeatPulse healthcheck temp database
356+
healthchecksdb
357+
358+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
359+
MigrationBackup/
360+
361+
# Ionide (cross platform F# VS Code tools) working folder
362+
.ionide/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024-25 Subhajit Sahu
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Design of multi-threaded memory allocator for supporting the implementation of dynamic graphs.

inc/_main.hxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#pragma once
2+
#include "_memory.hxx"
3+
#include "_utility.hxx"

0 commit comments

Comments
 (0)