Sponsored Content
Full Discussion: Intimate Shared Memory (ISM)
Operating Systems Solaris Intimate Shared Memory (ISM) Post 302363350 by jlliagre on Tuesday 20th of October 2009 05:28:09 AM
Old 10-20-2009
What boolean "ISM value" are you referring to ?
 

10 More Discussions You Might Find Interesting

1. Programming

Shared memory

Dear Reader, Is is necessary to attach / dettach the shared memory segments for write operations , if more than one program is accessing same shared memory segments.. I have used semaphore mutex and still I'm getting segmentation fault when I write to the segment when other program is already... (1 Reply)
Discussion started by: joseph_shibu
1 Replies

2. UNIX for Advanced & Expert Users

Shared memory shortage but lots of unused memory

I am running HP-UX B.11.11. I'm increasing a parameter for a database engine so that it uses more memory to buffer the disk drive (to speed up performance). I have over 5GB of memory not being used. But when I try to start the DB with the increased buffer parameter I get told. "Not... (1 Reply)
Discussion started by: cjcamaro
1 Replies

3. Linux

all about shared memory

Hi all :confused: , I am new to unix.I have been asked to implement shared memory in user's mode.What does this mean?What is the difference it makes in kernel mode and in users mode?What are the advantages of this impemenation(user's mode)? And also i would like to know why exactly shared... (0 Replies)
Discussion started by: vijaya2006
0 Replies

4. Programming

help with shared memory

what i want to do is have an int that can been written into by 2 processes but my code doesn't seem to work. #include <sys/types.h> #include <sys/ipc.h> #include <sys/sem.h> #include <sys/shm.h> #include<stdio.h> #define KEY1 (1492) int main() { int shmid; volatile int * addr;... (6 Replies)
Discussion started by: ddx08
6 Replies

5. Programming

memory sharing - not shared memory -

hi, this is the problem: i want to swap a linked list between 4 processes (unrelated), is there any way i can do that just by sending a pointer to a structure? //example typedef struct node { int x; char c; struct node *next; } node; or i should send the items ( x,c ) by... (9 Replies)
Discussion started by: elzalem
9 Replies

6. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

7. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

8. UNIX for Advanced & Expert Users

Shared Memory

Hi, Using ipcs we can see shared memory, etc.. details. How can I add/remove shared memory(command name)? Thanks, Naga:cool: (2 Replies)
Discussion started by: Nagapandi
2 Replies

9. AIX

shared memory

1.How to know wich process is using the shared memory? 2.How to flush (release) the process from the shared memory? (1 Reply)
Discussion started by: pchangba
1 Replies

10. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies
IEEE80211(9)						   BSD Kernel Developer's Manual					      IEEE80211(9)

NAME
ieee80211_ifattach, ieee80211_ifdetach, ieee80211_mhz2ieee, ieee80211_chan2ieee, ieee80211_ieee2mhz, ieee80211_media_init, ieee80211_media_change, ieee80211_media_status, ieee80211_watchdog, ieee80211_setmode, ieee80211_chan2mode, ieee80211_rate2media, ieee80211_media2rate -- core 802.11 network stack functions SYNOPSIS
#include <net80211/ieee80211_var.h> #include <net80211/ieee80211_proto.h> void ieee80211_ifattach(struct ieee80211com *ic); void ieee80211_ifdetach(struct ieee80211com *ic); u_int ieee80211_mhz2ieee(u_int freq, u_int flags); u_int ieee80211_chan2ieee(struct ieee80211com *ic, struct ieee80211_channel *c); u_int ieee80211_ieee2mhz(u_int chan, u_int flags); void ieee80211_media_init(struct ieee80211com *ic, ifm_change_cb_t media_change, ifm_stat_cb_t media_stat); int ieee80211_media_change(struct ifnet *ifp); void ieee80211_media_status(struct ifnet *ifp, struct ifmediareq *imr); void ieee80211_watchdog(struct ieee80211com *ic); int ieee80211_setmode(struct ieee80211com *ic, enum ieee80211_phymode mode); enum ieee80211_phymode ieee80211_chan2mode(struct ieee80211com *ic, struct ieee80211_channel *chan); int ieee80211_rate2media(struct ieee80211com *ic, int rate, enum ieee80211_phymode mode); int ieee80211_media2rate(int mword); DESCRIPTION
The ieee80211 collection of functions are used to manage wireless network interfaces in the system which use the system's software 802.11 network stack. Most of these functions require that attachment to the stack is performed before calling. Several utility functions are also provided; these are safe to call from any driver without prior initialization. The ieee80211_ifattach() function attaches the wireless network interface ic to the 802.11 network stack layer. This function must be called before using any of the ieee80211 functions which need to store driver state across invocations. This function also performs Ethernet and BPF attachment (by calling ether_ifattach() and bpfattach2()) on behalf of the caller. The ieee80211_ifdetach() function frees any ieee80211 structures associated with the driver, and performs Ethernet and BPF detachment on behalf of the caller. The ieee80211_mhz2ieee() utility function converts the frequency freq (specified in MHz) to an IEEE 802.11 channel number. The flags argu- ment is a hint which specifies whether the frequency is in the 2GHz ISM band (IEEE80211_CHAN_2GHZ) or the 5GHz band (IEEE80211_CHAN_5GHZ); appropriate clipping of the result is then performed. The ieee80211_chan2ieee() function converts the channel specified in *c to an IEEE channel number for the driver ic. If the conversion would be invalid, an error message is printed to the system console. This function REQUIRES that the driver is hooked up to the ieee80211 subsys- tem. The ieee80211_ieee2mhz() utility function converts the IEEE channel number chan to a frequency (in MHz). The flags argument is a hint which specifies whether the frequency is in the 2GHz ISM band (IEEE80211_CHAN_2GHZ) or the 5GHz band (IEEE80211_CHAN_5GHZ); appropriate clipping of the result is then performed. The ieee80211_media_init() function initializes media data structures used by the ifmedia interface for the driver ic. It must be called by the driver after calling ieee80211_ifattach() and before calling most ieee80211 functions. The media_change and media_stat arguments specify helper functions which will be invoked by the ifmedia framework when the user changes or queries media options, using a command such as ifconfig(8). The ieee80211_media_status() and ieee80211_media_change() functions are device-independent handlers for ifmedia commands and are not intended to be called directly. The ieee80211_watchdog() function is intended to be called from a driver's if_watchdog routine. It is used to perform periodic cleanup of state within the software 802.11 stack, as well as timing out scans. The ieee80211_setmode() function is called from within the 802.11 stack to change the mode of the driver's PHY; it is not intended to be called directly. The ieee80211_chan2mode() function returns the PHY mode required for use with the channel chan on the device ic. This is typically used when selecting a rate set, to be advertised in beacons, for example. The ieee80211_rate2media() function converts the bit rate rate (measured in units of 0.5Mbps) to an ifmedia sub-type, for the device ic run- ning in PHY mode mode. The ieee80211_media2rate() performs the reverse of this conversion, returning the bit rate (in 0.5Mbps units) corre- sponding to an ifmedia sub-type. SEE ALSO
ieee80211_crypto(9), ieee80211_input(9), ieee80211_ioctl(9), ieee80211_node(9), ieee80211_output(9), ieee80211_proto(9), ieee80211_radiotap(9) HISTORY
The ieee80211 series of functions first appeared in NetBSD 1.5, and were later ported to FreeBSD 4.6. AUTHORS
This man page was written by Bruce M. Simpson <bms@FreeBSD.org> and Darron Broad <darron@kewl.org>. BSD
September 12, 2006 BSD
All times are GMT -4. The time now is 01:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy