Sponsored Content
Full Discussion: Unix linked-list placement
Top Forums UNIX for Advanced & Expert Users Unix linked-list placement Post 302671873 by bakunin on Saturday 14th of July 2012 10:34:12 PM
Old 07-14-2012
I am not sure why you want to modify the kernel sources. If you just want to share information between processes you can use shared memory. See the shmget(), shmat(), mmap(), etc. system calls for information about how shared memory works.

I hope this helps.

bakunin
 

10 More Discussions You Might Find Interesting

1. Programming

Reverse single linked list

Can any one help me in reversing the single linked list and at the same time i want to print the reversed links. (2 Replies)
Discussion started by: dhanamurthy
2 Replies

2. UNIX for Dummies Questions & Answers

List linked files

A perl script that displays the list of files which have multiple links..! ls -l shows number of links in a field. (0 Replies)
Discussion started by: aadi_uni
0 Replies

3. Programming

shared memory with linked list??

is this possible, if so plz please share with me.. Correct English please, not Cyber-/Leetspeak (11 Replies)
Discussion started by: vijay_manpage
11 Replies

4. Programming

I need C++ Code for single linked list

I need C++ Code for single linked list With operations as 1)insert at any position 2)delete any 3)change the data of any position (2 Replies)
Discussion started by: girija
2 Replies

5. Programming

Help with linked list in C

i have this code typedef struct client_list { char *client_name; struct client_list * next; int client_socket_fd; } client; client *current, *head; head = NULL; char *h="test"; add_client(current, h, head, &client_socket_fd); ... (24 Replies)
Discussion started by: omega666
24 Replies

6. Programming

How to check if something exists in linked list in C?

i have a linked list set up like typedef struct client_list { char *client_name; int client_socket_fd; struct client_list *next; } client; client *client_list=NULL; before adding to the list i check if it already exists, only if it does not then i add if (client_list==NULL... (1 Reply)
Discussion started by: omega666
1 Replies

7. OS X (Apple)

Segmentation fault when reading out a linked list

Hey everyone, this is my first time posting, so hopefully i won't commit some kind of egregious faux pas. :) Anyways, I'm trying to create and read back a simple linked list in C++. So far, I think I've built it and filled it with 10 different arrays of characters of about 22 characters each.... (2 Replies)
Discussion started by: gravity black
2 Replies

8. Programming

Help with linked list.

#include<stdio.h> #include<stdlib.h> struct LinkedList { int val; struct LinkedList *next; }node; /*Creating a structure variable*/ typedef struct LinkedList Node; Node *start = NULL; int create(int i) { Node *temp = NULL; if (start == NULL) ... (5 Replies)
Discussion started by: prinsh
5 Replies

9. Programming

How to delete the last node in a linked list.?

How to delete the last node in a single linked list given only the pointer to last node ? Head node will not be given. (5 Replies)
Discussion started by: VSSajjan
5 Replies

10. Programming

How to reverse a linked list by traversing only once.?

Program to reverse a linked list by traversing only once. (1 Reply)
Discussion started by: VSSajjan
1 Replies
NUTSCAN_ADD_DEVICE_T(3) 					    NUT Manual						   NUTSCAN_ADD_DEVICE_T(3)

NAME
nutscan_add_device_to_device - Concatenate two devices structure. SYNOPSIS
#include <nut-scan.h> nutscan_device_t * nutscan_add_device_to_device(nutscan_device_t * first, nutscan_device_t * second); DESCRIPTION
The nutscan_device_t contains the following variables: nutscan_device_type_t type; char * driver; char * port; nutscan_options_t opt; struct nutscan_device * prev; struct nutscan_device * next; This is a double linked list of device. Each device is described by its type, its driver name, its port and any number of optional data. The nutscan_add_device_to_device() concatenates first and second devices to a unique device. No new device is created, the two linked list are simply linked to each other. So first and second devices are likely to be modified by this function. RETURN VALUE
The nutscan_add_device_to_device() functions returns a pointer to a device containg both passed devices. Note that it's not a new device, so it is either first or second which is returned. SEE ALSO
nutscan_scan_usb(3), nutscan_scan_xml_http(3), nutscan_scan_nut(3), nutscan_scan_avahi(3), nutscan_scan_ipmi(3), nutscan_scan_snmp(3), nutscan_display_ups_conf(3), nutscan_display_parsable(3), nutscan_new_device(3), nutscan_free_device(3), nutscan_add_option_to_device(3) Network UPS Tools 05/22/2012 NUTSCAN_ADD_DEVICE_T(3)
All times are GMT -4. The time now is 06:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy