CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: blueowl

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    969

    Re: How to free space in partion linux

    Firstly, this forum is for C++ questions. Try to consult some Linux related forum.

    To your problem, check if you are deleting data actually from "data" partition.
    What FS is on "data" partition?
  2. Replies
    2
    Views
    881

    Re: Binding raw devices in Linux kernel 2.6

    I don't know whether something changed in this area.
    Nevertheless, open() returns -1, which means it fails. It may be e.g. due to the unsufficient priveleges or any other reason. Try to print out...
  3. Re: Copy constructor (invoking implicit one in user defined?)

    OK, thanks guys for your ideas.
    The option to encapsulate the dynamic member (actually char *) to a class and manage it there is a nice solution. However I have doubts about performance. The object...
  4. Replies
    1
    Views
    621

    Re: library files problem

    Hello Sampath,

    it looks like you don't have installed libpcap properly.
    It depends on which OS you use. But probably you need to install a development package for libpcap.
    Then you will find...
  5. Copy constructor (invoking implicit one in user defined?)

    I have a rather big class with many elementary data members (int, bool, etc.). The class contains one dynamically allocated member as well.
    Due to this dynamic member, I have to define my copy...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured