¡@

Home 

c++ Programming Glossary: solaris

Finding current executable's path without /proc/self/exe

http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe

man 3 dyld Linux readlink proc self exe Solaris getexecname FreeBSD sysctl CTL_KERN KERN_PROC KERN_PROC_PATHNAME..

Seeking and reading large files in a Linux C++ application

http://stackoverflow.com/questions/1035657/seeking-and-reading-large-files-in-a-linux-c-application

on Linux platforms but might return something else on e.g. Solaris. For linking you should use the link flags that are reported..

What is the Fastest Method for High Performance Sequential File I/O in C++?

http://stackoverflow.com/questions/1201261/what-is-the-fastest-method-for-high-performance-sequential-file-i-o-in-c

interest in Win x64 but I am interested in comments on Solaris and Linux as well c performance file io share improve this..

Visual Studio support for new C / C++ standards?

http://stackoverflow.com/questions/146381/visual-studio-support-for-new-c-c-standards

environment. Portability of code across Windows Linux Solaris AIX etc is usually important in my experience and that is not..

Programmatically find the number of cores on a machine

http://stackoverflow.com/questions/150355/programmatically-find-the-number-of-cores-on-a-machine

sysinfo numCPU sysinfo.dwNumberOfProcessors Linux Solaris AIX and Mac OS X for all OS releases 10.4 i.e. Tiger onwards..

Common reasons for bugs in release version not present in debug mode

http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode

the same can be a issue at least in other OS like Linux Solaris. Ideally your program should not catch such critical exceptions..

C++ #include semantics

http://stackoverflow.com/questions/179213/c-include-semantics

as I currently work both on Windows Visual C Linux g and Solaris CC this is not acceptable. Anyway the advantage of described..

Send and Receive a file in socket programming in Linux with C/C++ (GCC/G++)

http://stackoverflow.com/questions/2014033/send-and-receive-a-file-in-socket-programming-in-linux-with-c-c-gcc-g

sendfile but the exact interface may vary FreeBSD Mac OS X Solaris . In Linux 2.6.17 the splice system call was introduced and..

List of standard header files in C and C++

http://stackoverflow.com/questions/2027991/list-of-standard-header-files-in-c-and-c

Is there a place I can search for I am working on Solaris Unix. c c header header files share improve this question..

fastest (low latency) method for Inter Process Communication between Java and C/C++

http://stackoverflow.com/questions/2635272/fastest-low-latency-method-for-inter-process-communication-between-java-and-c

in C C . both app server are running on the same machine a Solaris box but we're considering migrating to Linux eventually . type..

Netbeans or Eclipse for C++? [closed]

http://stackoverflow.com/questions/308450/netbeans-or-eclipse-for-c

and need to do C development on Windows Mac Linux and Solaris and I've narrowed it down to Netbeans and Eclipse so I was wonderig..

SFTP C++ library?

http://stackoverflow.com/questions/360259/sftp-c-library

and works identically on numerous platforms including Solaris NetBSD FreeBSD OpenBSD Darwin HPUX IRIX AIX Tru64 Linux UnixWare..

Computation of Cpu percentage by a single process in unix by the “top” command

http://stackoverflow.com/questions/4450961/computation-of-cpu-percentage-by-a-single-process-in-unix-by-the-top-command

For example in Linux it is found in proc pid stat and for Solaris it is found in proc pid psinfo . The CPU usage is calculated.. contains the functionality for retrieving the data. For Solaris you can inspect the libproc source from https hg.java.net hg.. the data and storing it in a psinfo_t struct. For Linux Solaris and others you can inspect the Unix Top source from http sourceforge.net..

I want to make my own Malloc

http://stackoverflow.com/questions/732617/i-want-to-make-my-own-malloc

a free to take up a lot of time. There's a nice paper on Solaris malloc implementations you might find interesting. Here's another.. Here's another on building an alternative malloc again in Solaris but the basics are the same. And you should read the Wikipedia..

gSOAP Multithreading

http://stackoverflow.com/questions/8150380/gsoap-multithreading

version 2.8.5 as a minimum. It was initially built on Solaris 8 with gsoap version 2.8.3 porting the code to Ubuntu and running..

how to find the location of the executable in C

http://stackoverflow.com/questions/933850/how-to-find-the-location-of-the-executable-in-c

bufsize FreeBSD readlink proc self path a.out buf bufsize Solaris On Unixes without proc i.e. if above fails If argv 0 starts..

Error of start of hadoop of the program:PriviledgedActionException

http://stackoverflow.com/questions/12191575/error-of-start-of-hadoop-of-the-programpriviledgedactionexception

JNI in C++ to read file to jbyteArray

http://stackoverflow.com/questions/12854333/jni-in-c-to-read-file-to-jbytearray

jdk1.5.0 include I usr jdk instances jdk1.5.0 include solaris o libSample.so shared com_sp_dll_NativeMethods.cpp Text relocation..

Solaris 10 CC Preprocessor bug causes undefined symbols

http://stackoverflow.com/questions/12870028/solaris-10-cc-preprocessor-bug-causes-undefined-symbols

std pair const int bool __rb_tree_node c compiler solaris cc share improve this question Try using CC E in place of..

How get fileName having FILE*?

http://stackoverflow.com/questions/4305355/how-get-filename-having-file

expect ascii_file and want it to work on windows linux and solaris. c c share improve this question This task is going to..

Computation of Cpu percentage by a single process in unix by the “top” command

http://stackoverflow.com/questions/4450961/computation-of-cpu-percentage-by-a-single-process-in-unix-by-the-top-command

how it can be done. Thanks in advance. c c unix solaris share improve this question The top command computes the.. can inspect the libproc source from https hg.java.net hg solaris~on src file tip usr src lib libproc . The prog_get_info.c file..

Gettin line number of the called function

http://stackoverflow.com/questions/4452557/gettin-line-number-of-the-called-function

name on line 4 Can I do it 11 return malloc size 12 c solaris share improve this question the macros __LINE__ gives the..

Better logging library for C++ [closed]

http://stackoverflow.com/questions/6692238/better-logging-library-for-c

support. Must support linux windows. Better if it support solaris aix hp ux but it's not necessary. c logging share improve..

#ifdef for 32-bit platform

http://stackoverflow.com/questions/735647/ifdef-for-32-bit-platform

didn't mention the code is cross platform linux windows solaris and a few other unix flavors mostly using GCC for compilation...

Is the const value parameter in definition but not declaration really C++?

http://stackoverflow.com/questions/768588/is-the-const-value-parameter-in-definition-but-not-declaration-really-c

hack that works everywhere else but Solaris c open source solaris language features share improve this question This looks..

Cross platform programming

http://stackoverflow.com/questions/836469/cross-platform-programming

of unix is not hard to achieve I have found my way around solaris ubuntu and os x coming from a windows background a few simple..