Sponsored Content
Operating Systems Linux Problem with pthread_suspend,pthread_continue in Linux Post 302243637 by ramen_noodle on Monday 6th of October 2008 07:58:45 AM
Old 10-06-2008
Linux pthreads don't support these functions. I'd suggest man -k pthread_cond.
These functions can be recreated without too much trouble.
 

10 More Discussions You Might Find Interesting

1. Programming

Scanf problem under LINUX...

I have a problem reading characters from keyboard with the scanf function. Here there is a little piece of code: #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> /* The last 3 libraries are included because in the real program I use some... (4 Replies)
Discussion started by: robotronic
4 Replies

2. UNIX for Dummies Questions & Answers

Linux space problem

I am very new to Linux and trying to install Oracle 9.2 on Red Hat Linux 7.2. My problem: /tmp needs to be larger in order to install Oracle. It is 64MB now. How can I resize this? I'm totally confused !! Thanks. (7 Replies)
Discussion started by: canova
7 Replies

3. UNIX for Dummies Questions & Answers

Problem for extension .fs in Linux

Hi, My company has a RH Linux AS server ( Linux 2.4.21-27.0.2.ELsmp ). I'm currently writing some shell scripts. I observed that if I vi a file with .fs extension. It prompts me the following error: "123.fs" 0L, 0C W18: Invalid character in group name If I vi... (3 Replies)
Discussion started by: donaldfung
3 Replies

4. Linux

Problem Loading Linux

I have Linux on an image in my cd-rom drive. I have previously loaded Windows XP but couldnt use it because I had already installed it on another PC - so I want to remove this and load Linux. I am fairly PC illiterate when it come to dos-commands and such... HELP!!! (1 Reply)
Discussion started by: Kyroq
1 Replies

5. Linux

ftp problem in linux

Hello,all I want set ftp access for specific user. The user can only access specific directory and cannot access upper level directory. For example: I have /home/vhosts/likke.com I like a user to access likke.com but not vhosts. How can I implement this ? Thanks a lot! (1 Reply)
Discussion started by: xli3
1 Replies

6. Ubuntu

Problem while booting linux

Hi all, We are using linux Redhat 9. While booting the server, it says /proc not mounted and it says "Segmentation fault" and doesn't continue with booting. Basically, it started while we inserted a pen drive and removed it without mounting and un mounting it. After removing the pen drive &... (1 Reply)
Discussion started by: mjdarm
1 Replies

7. Homework & Coursework Questions

Problem with users in Linux

Hi. I have a problem with my homework. I have to do a Script that will tell me the number of users that are logged in on my system through a network and find out their IP's. Can you give me an idea? Thanks (1 Reply)
Discussion started by: mitzu
1 Replies

8. Linux

Linux Installation problem

Masters, I really need help here.... I had to format my system so my installed Linux goes away.. Now I am trying to fresh installation, but stuck at one point, did RND for 2-3 days but no luck, hence posting here.... I am stuck on the "installation method" step..As I am trying to install... (6 Replies)
Discussion started by: joshilalit2004
6 Replies

9. Ubuntu

i have a problem in programing of linux

i have problem in running of Linux programing .can i run this programing in ubuntu. and what will be the procedure for that. please gave me a perfect suggestion.:wall: (8 Replies)
Discussion started by: g.gupta3392
8 Replies

10. HP-UX

Mount problem with Linux

Hello, I want to mount a directory with nfs (v3). Server HP-UX 10.20 Client Centos If I export the path "/tausch" with access control for hosts with the command mount -t nfs <SERVER_HP-UX_IP>:/tausch/ /mnt/mnt_bach2/ /etc/exports: /tausch ... (8 Replies)
Discussion started by: nuts
8 Replies
FDIM(3) 						     Linux Programmer's Manual							   FDIM(3)

NAME
fdim, fdimf, fdiml - positive difference SYNOPSIS
#include <math.h> double fdim(double x, double y); float fdimf(float x, float y); long double fdiml(long double x, long double y); Link with -lm. Feature Test Macro Requirements for glibc (see feature_test_macros(7)): fdimf(), fdiml(): _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L; or cc -std=c99 DESCRIPTION
These functions return the positive difference, max(x-y,0), between their arguments. RETURN VALUE
On success, these functions return the positive difference. If x or y is a NaN, a NaN is returned. If the result overflows, a range error occurs, and the functions return HUGE_VAL, HUGE_VALF, or HUGE_VALL, respectively. ERRORS
See math_error(7) for information on how to determine whether an error has occurred when calling these functions. The following errors can occur: Range error: result overflow An overflow floating-point exception (FE_OVERFLOW) is raised. These functions do not set errno. VERSIONS
These functions first appeared in glibc in version 2.1. ATTRIBUTES
Multithreading (see pthreads(7)) The fdim(), fdimf(), and fdiml() functions are thread-safe. CONFORMING TO
C99, POSIX.1-2001. SEE ALSO
fmax(3) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2013-07-15 FDIM(3)
All times are GMT -4. The time now is 10:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy