Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
110 views

System-specific bug hunting?

I have recently been messing around with SFML, a multimedia library. I use C# so naturally I went for the .Net binding, which you can fetch from the SVN in the latest 2.0 version. After a while of ...
2
votes
2answers
82 views

.NET application experiences sudden an extreme growth of unmanaged memory

I'm running an application that exhibits some very peculiar issues. It runs just fine for around 2.5 hours, then suddenly unmanaged memory begins to grow, and grow quickly. Within around another ...
2
votes
2answers
93 views

Copying unmanaged memory to Managed byte array

I need to read unmanaged memory into a managed byte array. For this I have an IntPtr reference to unmanaged memory and a length which represents the size of the unmanaged memory that is of interest ...
2
votes
2answers
112 views

Are there any functional languages that don't have garbage collection

Or even heavily functional styles in non functional/non memory managed languages. What sort of techniques are there to deal with problems like intermediate garbage? Cleaning up after lazynizess/thunk ...
1
vote
4answers
86 views

WPF Performance issue with Unmanaged objects

I have developed an application in WPF with C#. The application includes a third party dll for displaying the camera in a particular window. Normally the application takes the memory 90 MB - 135 MB ...
1
vote
1answer
66 views

memory area used by unmanaged componet for allocations/deallocations

Let's say a .net managed application interfacts with an unmanaged component via InterOP. If I have to debug a memory issue; where exactly unmanaged component allocates memory? Is it the same heap that ...
1
vote
2answers
94 views

_msize() on managed data arrays?

There is a native function wich takes arrays of pointers to data arrays e.g. char allocated with malloc. void function(char** data, int nRows) { for (int i = 0; i < nRows; i++) { int ...
1
vote
2answers
189 views

C#/.NET: UnmanagedMemoryStream for networking?

I was considering using UnmanagedMemoryStream rather than MemoryStream for dealing with incoming (and perhaps outgoing?) packets in a network server. What I hope to achieve is less copying of values, ...
1
vote
2answers
377 views

How to read a managed stream into a uint array directly in C#?

I have some data in a stream which is actually in the format of uint. System.IO.Stream only allows me to read the content out to a byte array, but I don't want to read the bytes and then convert them ...
1
vote
5answers
1k views

How to zero out memory allocated by Marshal.AllocHGlobal?

I am allocating some unmanaged memory in my application via Marshal.AllocHGlobal. I'm then copying a set of bytes to this location and converting the resulting segment of memory to a struct before ...
0
votes
2answers
92 views

Filling unmanaged array in managed code

I've got a managed program, which cooperates with unmanaged DLL library. Library constructs an object, which asks (by callback function converted to delegate) managed host to fill unmanaged array. ...
0
votes
2answers
96 views

java memory pressure

Are there features in Java to tell the runtime about unmanaged memory allocation like the GC.AddMemoryPressure method in .NET?
0
votes
1answer
142 views

unmanaged memory leak in .net through activex component dynavis

I'm using an ActiveX component originally written only for pre .Net days that causes a memory leak. All .Net related intances (AxHost, etc..) are properly released yet the unmanaged memory keeps ...
0
votes
2answers
123 views

How is unmanaged memory allocated in system when instances are created?

How is unmanaged memory allocated in system when COM objects or any other unmanaged instances are created from C#?
0
votes
1answer
343 views

Passing unmanaged pointer to unmanaged object in managed class in C++/CLI

Let's assume the following situation: class A { public: void MyMethod() { a->AnotherMethod(b); } private: MyType* a; MyAnotherType* b; }; and typedef std::vector< int ...
-3
votes
1answer
110 views

System.AccessViolationException:“Attempted to read or write protected memory. This is often an indication that other memory is corrupt” [closed]

In the console application my code is running correctly but same code copy on win form application System.AccessViolationException:"Attempted to read or write protected memory. This is often an ...