Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

Find remaining memory available to a process in 32 bit Linux using C++ -


my c++ program caches lots of objects, , in beginning of each major api call, want ensure there @ least 500 mb available api call. may either running out of ram+swap space (consider system 1 gb ram + 1 gb swap file), or may running out of virtual address in process.(i may using 3.7 gb out of total 4gb address space). it's not easy me approximate how data have cached, can purge of if becoming issue, , iteratively till have 500 mb available in system or address space (whichever becoming bottleneck). requirements find in c++ on 32 bit linux:

a) find how ram + swap space free.
b) how user space address space available process.
c) how virtual memory process using. consider similar 'commit size' or 'working set size' of process on windows.

any answers appreciated.

take @ source vmstat : here. search domem() function, gather information memory (occupied , free).


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -