Benim stackAlloc
işlevini kullanarak şuna benzer:Erişim ihlali alloca
void* stackAlloc(size_t size) {
if (size > maxStackAllocation)
return malloc(size);
else
return _alloca(size);
}
void stackAllocFree(void *ptr, size_t size) {
if (size > maxStackAllocation) {
free(ptr);
}
}
Öyle stackAlloc
fonksiyonu daima alloca
her şey çalışıyor yerine malloc
kullanmak değiştirirseniz. kodunuzu _alloca()
çağırır beri
#define maxStackAllocation 1024
#define stackAlloc(size) \
(\
(size > maxStackAllocation)? \
malloc(size): \
_alloca(size) \
)
#define stackAllocFree(ptr, size) \
(\
(size > maxStackAllocation)? \
free(ptr): \
void() \
)
"maxStackAllocation" değeri nedir? Alloca'nın belge sayfasındaki tüm uyarıları da okumanızı tavsiye ederim. –
onun 1024, ben sadece 124 bayt burada – hidayat
http://stackoverflow.com/a/1029951/366904 tahsis (Vulkan görünüşe göre bir C API, neden değişken uzunluklu diziler kullanmıyoruz?) –