Sponsored Content
Top Forums UNIX for Dummies Questions & Answers SCO Unixware 7.1.4 Network Adapter Error Post 302440114 by flashinwrx on Monday 26th of July 2010 08:32:22 AM
Old 07-26-2010
Didn't work.. Same error.
 

9 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

SCO Unixware 2.1

I am using SCO Unixware 2.1 & some PC clients are connected, suddenly one message appearslike : UX:strintercept error: dropping message this message starts coming repeatedly & agtre some time system hangs.I had to reset the system & now the problem is not there.Please suggest, why this is... (0 Replies)
Discussion started by: paprch
0 Replies

2. AIX

hacmp network adapter re-define

I have an LPAR in a P5 machine which has been setup in an HACMP cluster. The person who set it up allocated the wrong network adapter (en) to the persistent network. For the life of me I cannot find where I can re-assign this adapter. Anyone able to help me as I am tearing my hair out and do not... (1 Reply)
Discussion started by: johnf
1 Replies

3. AIX

change network adapter

hello i've need to change network adapter on machine H80 aix 4.3.3 hacmp ( ent0 ) what i need to do after the new adapter installed on the machine? thanks best regards ariec (1 Reply)
Discussion started by: ariec
1 Replies

4. SCO

sco unixware + oracle 8.0.5

hi, anybody can give procedure for how to install oracle 8.0.5 in sco unixware 7.1.4. (0 Replies)
Discussion started by: prakrithi
0 Replies

5. AIX

How to active this network adapter?

When I configure two VIO Servers, VIOS1 used to ping its gateway, after I configured second VIOS2, VIOS1 cannpt ping its gateway, when I run this command: entstat -all ent#|grep -i priority Priority: 5 Active: False How to make Active to True? (1 Reply)
Discussion started by: rainbow_bean
1 Replies

6. UNIX for Dummies Questions & Answers

External Network Adapter for Solaris 10

Hi All, I am new here - this is my first post. I have installed Solaris 10 5/09 on my Dell M6300. The install went well, but the Dell's onboard network card is the Broadcom BCM5756ME Gigabit Ethernet - and sadly no Solaris driver exists for it. The Solaris 10 install just jumped by the... (1 Reply)
Discussion started by: soulmerchant
1 Replies

7. SCO

VMware and SCO Unixware 7.1.4 Network issue

I am haveing a problem with my VMware ESXi 4.1 server and a virtual SCO UnixWare 7.1.4 server that I need for a legacy application for my company. The problem seems simple but I can't find a solution. The UnixWare (UW) server is a clean install and patched as SCO recommends. I am able to telnet to... (1 Reply)
Discussion started by: DudeCrush
1 Replies

8. SCO

Sco UNIXware 7.1.4 error in booting

Hello Dears, I have fujitsu tx300 S7 server with installed sco unixware 7.1.4, Now the /etc is corrupted and the sco cannot boot. There is no emergency disk or cd, I'm trying to fix this with reinstalling unixware again, but the problem now that when i try to install the HBA driver that i... (26 Replies)
Discussion started by: amr ibrahim
26 Replies

9. SCO

Can not recognize network adapter SCO UNIX in HP z400

hi .I've installed an operating system SCO in HP Z400 and network cards ZyXEL model FN312 with Chipset RTL8139D put it on .network card installed but do not display network card with command ifconfig -a in list and just show loopback. show message : dlpid:unable to open network adapter driver... (14 Replies)
Discussion started by: moein.mojtaba
14 Replies
XCreateColormap()														 XCreateColormap()

Name
  XCreateColormap - create a colormap.

Synopsis
  Colormap XCreateColormap(display, w, visual, alloc)
	Display *display;
	Window w;
	Visual *visual;
	int alloc;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies a window ID.  The colormap created will be associated with the same screen as the window.

  visual    Specifies a pointer to the Visual structure for the colormap.  The visual class and depth must be supported by the screen.

  alloc     Specifies how many colormap entries to allocate.  Pass either AllocNone or AllocAll.

Returns
  The created colormap.

Description
  XCreateColormap() creates a colormap of the specified visual type and allocates either none or all of its entries, and returns the colormap
  ID.

  It is legal to specify any visual class in the structure pointed to by the visual argument.  If the class is	StaticColor,  StaticGray,  or
  TrueColor,  the  colorcells  will have pre-allocated read-only values defined by the individual server but unspecified by the X11 protocol.
  In these cases, alloc must be specified as AllocNone (else a BadMatch error).

  For the other visual classes, PseudoColor, DirectColor, and GrayScale, you can pass either AllocAll or AllocNone to the alloc argument.  If
  you  pass AllocNone, the colormap has no allocated entries.  This allows your client programs to allocate read-only colorcells with XAlloc-
  Color or read/write cells with XAllocColorCells(), AllocColorPlanes and XStoreColors().  If you pass the constant AllocAll, the entire col-
  ormap is allocated writable (all the entries are read/write, nonshareable and have undefined initial RGB values), and the colors can be set
  with XStoreColors().	However, you cannot free these entries with XFreeColors(), and no relationships between the entries are defined.

  If the visual class is PseudoColor or GrayScale and alloc is AllocAll, this function simulates a call to the function  XAllocColor()	cells
  returning all pixel values from 1 to (map_entries - 1).  For a visual class of DirectColor, the processing for AllocAll simulates a call to
  the function XAllocColorPlanes(), returning a pixel value of 0 and mask values the same as the red_mask, green_mask, and blue_mask  members
  in visual.

  The visual argument should be as returned from the DefaultVisual macro, XMatchVisualInfo(), or XGetVisualInfo().

  If the hardware colormap on the server is immutable, and therefore there is no possibility that a virtual colormap could ever be installed,
  XCreateColormap() returns the default colormap.  Code should check the returned ID against the default colormap to catch this situation.

  For more information on creating colormaps, see Volume One, Chapter 7, Color.

Errors
  BadAlloc

  BadMatch  Didn't use AllocNone for StaticColor, StaticGray, or TrueColor.
	    visual type not supported on screen.

  BadValue

  BadWindow

See Also
  XDefaultColormap(), XDisplayCells(), XCopyColormapAndFree(), XFreeColormap(), XGetStandardColormap(),  XInstallColormap(),  XListInstalled-
  Colormaps(), XSetStandardColormap(), XSetWindowColormap(), XUninstallColormap().

Xlib - Colormaps														 XCreateColormap()
All times are GMT -4. The time now is 05:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy