Sponsored Content
Top Forums Programming Unable to reference sysfs on Linux. Post 93038 by mbb on Thursday 15th of December 2005 04:53:52 AM
Old 12-15-2005
Like this?

Code:
/usr/bin/gcc    -DTRACE_ON -I/home/app/oracle/product/10.1.0/Db_1/precomp/public
 -I/home/mb/build/dev/Include -c ec2pc.c

/usr/bin/gcc -o ec2pc ec2pc.o -L /home/app/oracle/product/10.1.0/Db_1/lib -lsqlplus -L /home/mb/build/dev/Lib -ltrace -L /usr/lib
/home/mb/build/dev/Lib/libtrace.a(traceopen.o)(.text+0x172): In function `traceopen':
: undefined reference to `sysfs'
collect2: ld returned 1 exit status

Thanks for the idea, but no. It makes no difference.
 

8 More Discussions You Might Find Interesting

1. Cybersecurity

Unable to configure samba on linux 7.1

Hello I am able to connect from Linux machine to Windows machine, but i can not connect from Windows to Linux. Even i can print also from linux to windows... what could be the problem... pl help. thanks (5 Replies)
Discussion started by: twadkar
5 Replies

2. Red Hat

Unable to transfer files from xp to linux

hello to everyone, need your expertise with regards to linux. one of the systems engineer in our project created a ftp account in redhat linux. i'm using xftp for file transfer, the given ftp useraccount were able to login in the ftp browser, but the problem occurs when transfering files from xp... (10 Replies)
Discussion started by: gob23g
10 Replies

3. Linux

Query about creating sysfs directory under device driver

Hi all, Currently i am involved in developing a device driver for a custom hardware. My linux stack already has the sysfs directory structure /sys/class/hwmon/ My need is that, while loading my device driver i need to create a "xyz" sysfs directory inside hwmon sysfs directory as... (0 Replies)
Discussion started by: cbalu
0 Replies

4. Red Hat

unable to communicate with Linux machine

Hi all, I installed red hat 2.6.9-5 and when I am trying to ping it.I am able to ping any other machine in the network but unable to do vice-versa(means unable to ping this machine from any other machine) and getting the message -- please provide your valuable suggestions ... (2 Replies)
Discussion started by: smartgupta
2 Replies

5. UNIX for Dummies Questions & Answers

Unable to remove folder in linux

Hi I am using red hat linux, In my folder a strange folder is created i.e. " -a " , folder name is preceded with hyphen. Now if i try to remove with rm -rf -1 , i am unable to do it. Can anyone please let me know how to do it, & what this kind of folder means Thanks Sarbjit (3 Replies)
Discussion started by: sarbjit
3 Replies

6. Shell Programming and Scripting

Perl de-reference code reference variable

Guys, May i know how can we de reference the code reference variable.? my $a = sub{$a=shift;$b=shift;print "SUM:",($a+$b),"\n";}; print $a->(4,5); How can we print the whole function ? Please suggest me regarding this. Thanks for your time :) Cheers, Ranga :) (0 Replies)
Discussion started by: rangarasan
0 Replies

7. SuSE

Unable to format suse Linux

Hello All, I am new to use linux. I installed SUSE Linux Enterprise Server 11 (x86_64) trail version which is free for 60 days. Now I want to again format the whole system and install the same OS again but its not happening. I am trying with a bootable pen drive which has an .iso image of... (1 Reply)
Discussion started by: hunk_harsha
1 Replies

8. UNIX for Advanced & Expert Users

GPIO and sysfs

I was recently working on a project where some gpio pins were being toggled from within the user space: const char *const amplifierGPIO = "/sys/class/gpio/gpio107/value"; void amplifierUnmute() { std::ofstream amp(amplifierGPIO); if (amp.is_open()) { ... (3 Replies)
Discussion started by: Circuits
3 Replies
SYSFS(2)						     Linux Programmer's Manual							  SYSFS(2)

NAME
sysfs - get filesystem type information SYNOPSIS
int sysfs(int option, const char *fsname); int sysfs(int option, unsigned int fs_index, char *buf); int sysfs(int option); DESCRIPTION
Note: if you are looking for information about the sysfs filesystem that is normally mounted at /sys, see sysfs(5). The (obsolete) sysfs() system call returns information about the filesystem types currently present in the kernel. The specific form of the sysfs() call and the information returned depends on the option in effect: 1 Translate the filesystem identifier string fsname into a filesystem type index. 2 Translate the filesystem type index fs_index into a null-terminated filesystem identifier string. This string will be written to the buffer pointed to by buf. Make sure that buf has enough space to accept the string. 3 Return the total number of filesystem types currently present in the kernel. The numbering of the filesystem type indexes begins with zero. RETURN VALUE
On success, sysfs() returns the filesystem index for option 1, zero for option 2, and the number of currently configured filesystems for option 3. On error, -1 is returned, and errno is set appropriately. ERRORS
EFAULT Either fsname or buf is outside your accessible address space. EINVAL fsname is not a valid filesystem type identifier; fs_index is out-of-bounds; option is invalid. CONFORMING TO
SVr4. NOTES
This System-V derived system call is obsolete; don't use it. On systems with /proc, the same information can be obtained via /proc/filesystems; use that interface instead. BUGS
There is no libc or glibc support. There is no way to guess how large buf should be. COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2017-09-15 SYSFS(2)
All times are GMT -4. The time now is 03:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy