Search:

Type: Posts; User: sothy

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    902

    error msg [ 1/1] LINK (stripped)...

    error msg

    [
    1/1] LINK (stripped) build/release/sx_main_server
    FAILED: g++ -O2 `pkg-config --cflags --libs /home/sothy/seastar/build/release/seastar.pc` -g -Wl,--no-as-needed ...
  2. Replies
    3
    Views
    902

    compiling c program with C++ program

    Hello,
    I have C++ progam that compiles and running well. Now I need to test one feature with c program.

    In c program, I am writing one client_wrapper.h and client_wrapper.c file.
    In the...
  3. Replies
    4
    Views
    3,178

    It means you want to make two functions...

    It means you want to make two functions (Function_a_client_request_handling( request, Response) and Recv_on_recv_q ) in two threads and run. am I right?
    Main issue is that there are many threads...
  4. Replies
    4
    Views
    3,178

    It is in C++. MY program is in C. can I link C++...

    It is in C++. MY program is in C. can I link C++ with my C program?
  5. Replies
    4
    Views
    3,178

    async programming question

    I have two queues and two functions.


    Queue send_q, recv_q;

    Function_a_client_request_handling( request, Response){

    //Processed data send over send_q;

    // waiting for some...
  6. Replies
    13
    Views
    10,012

    @Salem, after cleaning libfluid_msg manually,...

    @Salem, after cleaning libfluid_msg manually, recompiled, It worked. Thanks
  7. Replies
    13
    Views
    10,012

    And It is not working . same error

    And It is not working . same error
  8. Replies
    13
    Views
    10,012

    yes i edited in msg.hh and msg.cc and rebuilt it

    yes i edited in msg.hh and msg.cc and rebuilt it
  9. Replies
    13
    Views
    10,012

    Thanks Salem. But your code is good example for...

    Thanks Salem. But your code is good example for double free error. When I correct this error, I am now in another error undefined reference. Either it should be some error in copy CTOR or somewhere...
  10. Replies
    13
    Views
    10,012

    Sorry for this silly mistake. I corrected. Still...

    Sorry for this silly mistake. I corrected.
    Still same problem. why?
  11. Replies
    13
    Views
    10,012

    I completely modified the source code. ...

    I completely modified the source code.


    PacketOutCommon::PacketOutCommon(const PacketOutCommon& other) : OFMsg(other)
    {


    this->buffer_id_== other.buffer_id_;
    ...
  12. Replies
    13
    Views
    10,012

    Yes Salem. Th at is what I did. See I modified...

    Yes Salem. Th at is what I did. See I modified the code in order to have copy-ctor.


    PacketOutCommon::PacketOutCommon(const PacketOutCommon& other) : OFMsg(other)
    {


    ...
  13. Replies
    13
    Views
    10,012

    AddressSanitizer: attempting double-free

    Hi,

    I am developing test application. The sample application is :

    ++++++++++++++++++++++++++++++++++++++++++++


    #include <fluid/of10msg.hh>
    #include <iostream>
Results 1 to 13 of 13