2
votes
3answers
51 views

Why does this code work on Linux but not on SunOS?

#include <stdio.h> int main() { char *str = "11111111-22222222 r-xp 00000000 00:0e 1843624 /lib/libdl.so.0"; unsigned long long start_addr, stop_addr, offset; char* access = NULL; ...
3
votes
1answer
93 views

Using pthreads and malloc

I asked a question Using sockets in multithread server yesterday. In this question I described segmentation fault under Solaris in multithreaded server. Now I have found the core of error and written ...
1
vote
1answer
26 views

solaris recv infinite receiving

When you run this code, the response does not come. Soket is a state of being connected. So forever is in the standby state return value without not. please help me. ... sock = socket(PF_INET, ...
0
votes
1answer
53 views

In solaris vsnprintf core dump in strlen function is any method to resolve this?

I am calling vsnprintf , as below If Vargs is NULL then vsnprintf coredump in strlen function,but same core work fine in other OS like linux , AIX .... Is there any solution for this ? I can't avoid ...
0
votes
1answer
25 views

Determine if running on a console in illumos/solaris

There is a function used in Debian's X wrapper. This function determines whether X is running on a console (virtual terminal), it work on linux and freebsd. What are ways to do the same on ...
0
votes
2answers
45 views

Core dump when trying to access a pointer to a structure passed to a function in solaris

I have a quite complicated code in that is working fine on AIX but core dumping in Solaris. I tried to make it as simplified as possible. Below is a global structrue having a pointer to a function ...
-1
votes
1answer
65 views

malloc and snprintf bus core dump

Function which worked previously, suddenly refuses cooperation. More precisely this snippet: //If not, add to UIDS printf("line 78\n"); free(s2); printf("line 82\n"); char * ss = ...
0
votes
1answer
49 views

Wrong value of UID in stat() and wrong pr_pid in psinfo_t

My function reads process list from /proc, then read process psinfo file into proper sturcture, as well as data about this file, and prints it. The problem is, some of the data in those structures is ...
0
votes
1answer
150 views

Parent trying to read children exit status (or return value), fork and wait

I'm confused. Supposedly, basing on man, and many other sources, like this: Return code when OS kills your process wait(&status) should make it possible for me to get the exit status or return ...
0
votes
1answer
79 views

A Open source C library which provides sending email function?

all: Is there any good open source C library which provides sending email function? I don't want use mailx command in Solaris. Thanks very much in advance!
2
votes
2answers
69 views

Solaris audio API

How to write a c function to record and play voice on Solaris. Which api usually used to play and record voice in Solaris like we have the WaveIn/WaveOut APIs in Windows.
1
vote
1answer
71 views

Building c programs to target HP/Solaris OS

I have to write a C program can be run on HP UX & Sun Solaris. Do we have to build the executable on both machines? Is there a way to build on Linux say centos or ubuntu using standard ...
1
vote
0answers
87 views

Why does Solaris OS define SO_SNDTIMEO and SO_RCVTIMEO socket options in header file which actually not support by kernel? [closed]

all: I have a question about Solaris socket options. Solaris OS doesn't support SO_SNDTIMEO and SO_RCVTIMEO socket options, but the 2 marcos are still defined in sys/socket.h. I think this may ...
0
votes
2answers
86 views

Creating a Unix user from an application

I'm working on a home-grown user database tied to a larger sustainment application. The idea has been floated around to tie our users to system users, creating matching /etc/passwd entries each time ...
0
votes
1answer
82 views

In Solaris, link dynamic library error when using /usr/sfw/bin/gcc

all: I am working on Solaris 10, and meet the following issue: There is ODBC dynamic library in /usr/local/lib: lrwxrwxrwx 1 root root 16 Jun 26 2012 libodbc.so -> ...
1
vote
3answers
107 views

Cannot create POSIX named semaphores due to a permissions error (EACCES)

This is a tough one. Cannot create a POSIX named semaphore (sem_open) no matter the name on a system where there are no semaphores (thus no chance of name overlapping). This is a non-privileged user ...
1
vote
3answers
135 views

How to programatically determine which source IP address will be used to reach a given destination IP address

I have an embedded application which will be deployed on numerous third party systems and I need it to check that a deterministic and static source IP address is used for each destination address it ...
1
vote
2answers
153 views

Is using lseek to extend a file guaranteed to create a sparse file

I have been reducing the memory footprint of a program that uses several large arrays I have been working on by using file mapping. Since I don't know the desired size of these arrays I am ...
0
votes
2answers
81 views

creating and using a dynamic shared library on solaris

I am reading the procedure to create and use a dynamic shared library on solaris sparc server. below are the file i have : > ls -lrt total 8 -rw-rw-r-- 1 nobody nobody 848 Nov 22 14:45 ...
0
votes
1answer
454 views

Knowing the process status using procf/<pid>/status

I am working on solaris Unix OS. I know that if there is a process running on unix there is a file called /proc//status which has a field called state in it. i took an example of the shell process ...
1
vote
2answers
121 views

fread of a struct diffrent under solaris and linux

I'm reading in the first Bytes of an File with fread: fread(&example_struct, sizeof(example_struct), 1, fp_input); Which ends up with different results under linux and solaris? Whereby the ...
1
vote
1answer
105 views

generate core from C program on Solaris [duplicate]

Possible Duplicate: How can a C program produce a core dump of itself without terminating? I would like to generate a core from a C program without terminating the running process. OS is ...
0
votes
2answers
149 views

error: expected primary-expression before “__attribute__”;

I am compiling a C program on Solaris 10 for x86, this is a part linked: >yyerrlab1:/*Suppress GCC warning that yyerrlab1 is unused when no action*/ >#if defined ...
1
vote
0answers
90 views

Linux kernel crypto API from Solaris [closed]

I am porting some kernel sources from Solaris over to Linux, and I have 7 functions I need to make equivalent implementation. From Solaris, they are: int ...
1
vote
1answer
106 views

How to draw Unicode tick in C?

I'm working on a testing framework which prints to the command-line and instead of 'Pass'/'Fail', I would like to print ticks (check mark) for pass and crosses for fail. I found the symbols at the ...
1
vote
1answer
87 views

Printing an environment in C

I'm coding a shell currently and for some reason I can't get my printenv function to work. When a command is not given, it works. When two arguments are given, it also works. However, when one ...
1
vote
0answers
62 views

Pthreads. Implementation of cancellation points

My question is related to this one pthread_cancel don't work under solaris I have the same problem. I couldn't find printf implementation without write(write has cancellation point) call on the ...
1
vote
1answer
171 views

pthread_cancel don't work under solaris

#include <stdio.h> #include <pthread.h> #include <stdlib.h> #include <string.h> char a[]="Hello"; void * thread_body(void * param) { while(1) ...
1
vote
1answer
94 views

Solaris 8-10: host2ip conversion problems

I have a very peculiar problem that I am working on. I have code compiled by an old compiler (gcc 2.95 or older) on solaris 8/sparc platform. It runs fine on solaris 8/sparc but crashes on solaris ...
0
votes
3answers
149 views

Is there a way to print the PID of the process that called my C binary

I need to know which perl script is using my C CLI. Using bash I can easily print "who" ran a script using: CALLER=$(ps ax | grep "^ *$PPID" | awk '{print $NF}') echo $CALLER Up to now I have been ...
0
votes
3answers
184 views

Core in libc.so.1

I am using Solaris 10 and my C program is getting crashed and creates a core file. On debugging, it seems like the core is created in libc.so.1. Please let me know if anyone have any clue. Below is ...
3
votes
2answers
595 views

How can I check to see if user has execute permissions?

I wish to know how to check if the "user" (other than who is running this program) has execute permissions on a file ? [C api] I have looked at "access" it gives information with respect to the ...
0
votes
1answer
86 views

dtrace - aggregation of variables passing to funcion from diffrent places where function was called

Sorry for compilcated title, but here is a dtrace output of my script, which I think will help explain what im talking about: 16384 1 38048 1 ...
0
votes
1answer
297 views

Solaris 10 — get IP source address from UDP multicast packet from recvmsg()

I have project code which creates a UDP socket to receive multicast packets. The code is portable for Linux and Solaris operating systems. An extension of my project is looking to retrieve the ...
3
votes
1answer
195 views

pthread: do other threads stop while the SIGSEGV handler runs?

I develop a program on Solaris 10. I want it to print stack trace on crash. I found this example: static void pstack() { char buf[256]; sprintf(buf, "/usr/proc/bin/pstack %d |/bin/tee ...
7
votes
1answer
337 views

poll implemenation on linux vs poll implementation on solaris

During debugging our application in linux enviroment we can observe that some events - POLLHUP|POLLIN occur only on linux. Our application uses unix sockets. When we do: ret = poll(xpoll->pfd, ...
4
votes
1answer
959 views

pthread mutex vs atomic ops in Solaris

I was doing some tests with a simple program measuring the performance of a simple atomic increment on a 64 bit value using an atomic_add_64 vs a mutex lock approach. What is puzzling me is the ...
1
vote
1answer
159 views

Validate the user name in unix/solaris

I wish to know is there any C api exists for validating user name ? My scenario is I am taking input of user_name which might not present at that point of time. Since the user name need to follow ...
0
votes
3answers
160 views

Refine the way I do malloc and free

I wrote this code that compiles on Solaris gcc it works fine too for smaller inputs and I get the output I intend. However, with larger inputs, I get segmentation faults, sometimes at places I do ...
0
votes
1answer
346 views

Using C socket from Solaris on Ubuntu

the following c-code was programmed for solaris. now i had to port it to a ubuntu linux: udp client /* Modul fuer Echo-Client mittels UDP Autor K. Felten Letzte Aenderung: ...
0
votes
1answer
236 views

Message Queue - Solaris10 - Could not open

I want to write 2 programs that communicate with a message queue! common.h #ifndef COMMON_H #define COMMON_H #define QUEUE_NAME "/zq1" #define MAX_SIZE 100 #define MSG_STOP "quit" #endif server ...
-3
votes
1answer
124 views

why cc “real time” >> “real time”?

I am having a problem with c compiler When compiling a simple hello world, user time is >>> real time. Here the comparison of times between two machines. It should be noted that the machine is not ...
0
votes
1answer
95 views

catopen() does not set errno when it fails in some cases

catopen is failing to open same cat file in different servers, with same setup. When errno is 0 it means no error from my understanding. Please tell me if anyone has seen like this before. If any ...
0
votes
1answer
110 views

Error: cannot use an address to initialize a field of a packed struct (#pragma pack)

I'm trying to use solaris studio for Linux on Ubuntu 10.10. When I tried building following code, const char * names [] = { "Apple", "Orange", "Mango"}; I'm getting following error message, ...
0
votes
1answer
175 views

application stack trace interpretation using mdb

Can someone please help me with interpreatation of this stack trace: Loading modules: [ libumem.so.1 libc.so.1 libuutil.so.1 ld.so.1 ] > $c libc.so.1`strlen+0xc(80b37ba, ...
2
votes
2answers
509 views

automatically linking socket shared library in *nix

I am learning network programming through the sample source codes from this link http://cs.baylor.edu/~donahoo/practical/CSockets/textcode.html. During the compilation, just wondering why in Solaris ...
0
votes
1answer
82 views

Set an event when a file is copied in C

I am writing a process in C on solaris platform which will monitor multiple directories and send an alert when ever a new file is copied. Example Parent_Dir/Dir1/ Parent_Dir/Dir2/ Parent_Dir/Dir3/ ...
0
votes
1answer
61 views

Processes of Job through GUI executes on same Virtual Processeor While through Command line Utilises Whatever VIrtual Processor is Free

I have an Application . We can run jobs on it through GUI and through command line . The server has 2 Physical CPUs and 32 processor-cores . The processor-cores on CPU1 are(0-7,16-23) While on CPU2 ...
1
vote
0answers
129 views

Anderson Queue lock on Solaris

I need a C equivalent of the following Java class. It is a queue lock known as an Anderson Lock used in thread synchronization. I am not comfortable using C, and there are some thread classes which I ...
0
votes
2answers
1k views

Determining CPU utilization- solaris unix

I was just going through SO and found out a question Determining CPU utilization The question is interesting and the one which is more intersting is the answer. So i thought doing some checks on my ...

1 2 3 4