Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: smithpd
  • Content: Threads
  • Order by date
  1. smithpd

    Problem using OpenMP and MPI at the same time

    I would like some advice on how to track down what seems to be a compiler bug in Microsoft Visual Studio (VS) 2008, but I am not sure. It could be something I could fix, but I have no idea how to approach it. I have a hybrid parallel code that uses both MPI, for control of tasks, and OpenMP...
  2. smithpd

    Limit on number of open files in Wiindows XP?

    I have written code that opens a series of files, without closing any of them (for a while), and stores the handles in an array of fsteam* pointers. I've compiled and run the code using Microsoft Visual C++ .NET 2003 under Windows XP. The code is a console application that runs in a CMD...
  3. smithpd

    Missing C++ header files in Visual C++ 2003

    I have been using Microsoft Visual C++ 6.0, and I just installed the .NET version, Visual C++ 2003. I converted a standard C/C++ console application from 6.0 to 2003 by opening the workspace file and accepting automatic conversion. Link and compile settings seem to be carried over. On...
  4. smithpd

    Multiple acounts: Win 2000 different users and In boxes

    This recent thread describes multiple accounts through the menu tools / personalities. thread13-24286 1 have used those personalities, but as I recall this method works only when one user has different mail servers he wants to check. All the messages get put into single In and Out boxes...
  5. smithpd

    reading single character from standard input stream

    I want to read a single character from the input stream and take immediate action when I do so. For example, char answer; cout << &quot;Type 'y' to continue&quot; << endl; answer = cin.get(); if (answer != 'y') return 0; // continue The problem is that when I use cin.get(), getchar()...
  6. smithpd

    A function that operates on different data types

    I am reading a disk file that has a header record that defines the data type of a data array that follow in the file. It could be char, short, or long. I look at the header and then malloc() storage for the following data, which returns a pointer to an array of the approprate data type (malloc...

Part and Inventory Search

Back
Top