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

Search:

Type: Posts; User: Moore

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    883

    forking a process in an existing thread

    Hello

    In C on *nix environment, can you fork a process from within a thread?
    Is the thread invoking the fork replicated only or everything in the process?

    What about heap memory - not...
  2. Replies
    4
    Views
    4,353

    Re: ISO-8859-1 or UTF-8 encoded string

    thanks.
  3. Replies
    4
    Views
    4,353

    ISO-8859-1 or UTF-8 encoded string

    hello,

    In C, is there any reliable way to determine how a string or more specifically the underlying bytes have been encoded.
    Looking at an issue where input data can be ISO-8859-1 or utf8.
    If...
  4. Replies
    4
    Views
    4,290

    Re: C memory segmentation fault

    topic resolved.
  5. Replies
    4
    Views
    4,290

    Re: C memory segmentation fault

    Hello,
    Thanks for reply.
    This is 32 bit binary.
    No problem with memory availability.
    I have seen the process dump core with core size well less that 1G (which is significantly smaller than max...
  6. Replies
    4
    Views
    4,290

    C memory segmentation fault

    Hi,

    Im getting the following segmentation fault from some C code on x86


    (gdb) bt full
    #0 0xfeb3487a in _malloc_unlocked () from /usr/lib/libc.so.1
    No symbol table info available.
    #1 ...
  7. Replies
    4
    Views
    2,051

    Re: common pattern(s) for message router (in Java)

    I understand, the initial post was pretty light ;-). appreciate the reply. thanks.
  8. Replies
    4
    Views
    2,051

    Re: common pattern(s) for message router (in Java)

    sure did, thats where I saw the "Enterprise integration patterns" in the original post. (I ain't that lazy)
    was looking for individual comments from resident experts here and maybe good...
  9. Replies
    4
    Views
    2,051

    common pattern(s) for message router (in Java)

    Hello,

    would appreciate any insight into common and useful patterns that could be used in designing/implementing message router type application.
    are there common design patterns used for...
  10. Thread: iconv api in C

    by Moore
    Replies
    1
    Views
    2,521

    iconv api in C

    hello.
    is is possible to get the source code for the iconv() API in C
    im trying to determine cases where errors arise and what they mean.
    for example I have some spurious error where iconv...
  11. Thread: beginning java

    by Moore
    Replies
    2
    Views
    952

    Re: beginning java

    thanks, have already started on the java trails.
  12. Thread: beginning java

    by Moore
    Replies
    2
    Views
    952

    beginning java

    hi,

    I would like advice on best resources when starting out on learning java.
    Best onlines tutotials, learning by examples, best books and so on.

    Some of the key areas would be JDBC, JSP, JPA,...
  13. Thread: thread safe data

    by Moore
    Replies
    3
    Views
    703

    Re: thread safe data

    thanks for feedback
  14. Thread: thread safe data

    by Moore
    Replies
    3
    Views
    703

    thread safe data

    hello,

    In C, if threadA has the ability to read and write to a complex data object and threadB is guaranteed to be read only, does the data object have to be thread safe?

    since a writer exists,...
  15. Replies
    1
    Views
    4,744

    recvfrom() question

    hello,.

    with the recvfrom() api call, it there a theoretical or physical limit to amount of data read from the socket?

    does the tcp layer gurantee all data is reassembled and ordered correctly...
  16. Thread: db performance

    by Moore
    Replies
    0
    Views
    884

    db performance

    hi,

    is there any proven api to monitor performance of database (mysql) from java application.
    the following guidelines are provides from mysql page...
  17. Replies
    0
    Views
    802

    database performance from java

    hi,

    is there any proven api to monitor performance of database (mysql) from java application.
    reading mysql doc suggests following guidelines...
  18. Replies
    4
    Views
    2,090

    Re: repeatable XML element

    thank much for your helpful posts.
  19. Replies
    4
    Views
    2,090

    Re: repeatable XML element

    thanks for your reply and info.

    what would be the best way to describe a variable number of list_entry elements though?
    could you just add attribute to indicate maximum # of instances of the...
  20. Replies
    4
    Views
    2,090

    repeatable XML element

    Hello

    I would like to model an entity(ET) in XML that has a repeatable element.


    <ET id="list">
    <ELEM name="description" type="string/>
    <ELEM name="list_entry" type="string"/> ...
  21. Replies
    0
    Views
    542

    Caching DB information

    hello,

    I'm looking for information in relation to caching relational database information in a C/C++ UNIX environment.

    Are there any existing/useful libraries/interface available from both a C...
  22. Thread: dwarf expression

    by Moore
    Replies
    0
    Views
    2,000

    dwarf expression

    hello

    has any one any experience of the following type of segmentation fault, where
    the seg fault occurs on access of a unsigned char array that appears ok in memory.



    Unhandled dwarf...
  23. Replies
    1
    Views
    813

    reading data from tcp sockets

    hi

    im working in a C code and unix environment.
    and currently reading up on tcp/ip and socket programming.

    Can anyone recommend good article/section of book specifically dealing with...
  24. Thread: memory copy

    by Moore
    Replies
    9
    Views
    1,018

    Re: memory copy

    ok I understand, thanks alot for the replies Lindley and cilu.
  25. Thread: memory copy

    by Moore
    Replies
    9
    Views
    1,018

    Re: memory copy

    Just reading your last point again.
    why would the read beyond that point cause a failure on some systems?
Results 1 to 25 of 112
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured