Sponsored Content
Full Discussion: Intel 965 motherboard series
The Lounge What is on Your Mind? Chat with iBot - Our RSS Robot Girl Intel 965 motherboard series Post 302205672 by Linux Bot on Monday 16th of June 2008 04:34:48 AM
Old 06-16-2008
Intel 965 motherboard series

Quote:
Originally Posted by talk2hod
i want 965 motherboard graphics module for RHEL5. Can u help me?
Why do you want 965 motherboard graphics module for RHEL5?What kind of help would you like?
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Which motherboard???

Hello All I'm looking to buy a new motherboard because my current one (ABIT BE6-II v1.1) doesn't support the installation of Unix. I'd like to keep my CPU (Genuine Intel PIII 800 Mhz) and memory (512 Meg) to use on the new motherboard. My CPU is one of those cartridge types which is mounted... (5 Replies)
Discussion started by: purloiner
5 Replies

2. Filesystems, Disks and Memory

Motherboard Compatibility

Hi there,, I URGENTLY need to know if the Gigabyte GA 8IDML Motherboard is compatible with the Unix BSD. We need to know if we should buy new boards before we can use the product. Thanking you Hannelie Bosch:confused: :confused: (1 Reply)
Discussion started by: hbosch
1 Replies

3. Windows & DOS: Issues & Discussions

Need BIOS drivers for motherboard

Does anyone know a good driver site. If you've heard of driverguide.com or driversearch.com please do not reccomend them because I already know them. I need to know where to get Motherboard drivers for a homemade computer. If there is any info that you need to know feel free to make a reply. :) (5 Replies)
Discussion started by: computek
5 Replies

4. UNIX for Dummies Questions & Answers

Replacing Motherboard

My UNIX (SCO) crashed. I replaced the MB and tried reconfiguring all the devices etc...the system detects the NIC ok, but the following are not working properly a) keyboard/credit card swipe which connects to PS/2 port not working b) unable to connect to another PC in the small network c)... (0 Replies)
Discussion started by: maakus
0 Replies

5. Linux

Intel 965 motherboard series

Can anybody help me about 965 motherboard? I have one, and i want visual console on it in RHEL5. If anyone has the module any any form plz send it for me. I will very thankful to U. (0 Replies)
Discussion started by: talk2hod
0 Replies

6. Solaris

corrupted motherboard

hi i have a sun server V890 and i added two cpu/memory modules to it but it caused the motherboard to become corrupted could you please help me find what causes this problem and how to avoid it because i changed the corrupted motherboard and i want to do the expansion and I'm scared that ... (2 Replies)
Discussion started by: bahjatm
2 Replies

7. Solaris

Change motherboard

Hello, I am fairly new to Solaris ... You can change the motherboard of a computer with solaris 10? Exist a tutorial for this or can you tell me how to do this? Thanks in advance (3 Replies)
Discussion started by: sedos
3 Replies
Tk_GetGC(3)						       Tk Library Procedures						       Tk_GetGC(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_GetGC, Tk_FreeGC - maintain database of read-only graphics contexts SYNOPSIS
#include <tk.h> GC Tk_GetGC(tkwin, valueMask, valuePtr) Tk_FreeGC(display, gc) ARGUMENTS
Tk_Window tkwin (in) Token for window in which the graphics context will be used. unsigned long valueMask (in) Mask of bits (such as GCForeground or GCStipple) indicating which fields of *valuePtr are valid. XGCValues *valuePtr (in) Pointer to structure describing the desired values for the graphics context. Display *display (in) Display for which gc was allocated. GC gc (in) X identifier for graphics context that is no longer needed. Must have been allocated by Tk_GetGC. _________________________________________________________________ DESCRIPTION
Tk_GetGC and Tk_FreeGC manage a collection of graphics contexts being used by an application. The procedures allow graphics contexts to be shared, thereby avoiding the server overhead that would be incurred if a separate GC were created for each use. Tk_GetGC takes arguments describing the desired graphics context and returns an X identifier for a GC that fits the description. The graphics context that is returned will have default values in all of the fields not specified explicitly by valueMask and valuePtr. Tk_GetGC maintains a database of all the graphics contexts it has created. Whenever possible, a call to Tk_GetGC will return an existing graphics context rather than creating a new one. This approach can substantially reduce server overhead, so Tk_GetGC should generally be used in preference to the Xlib procedure XCreateGC, which creates a new graphics context on each call. Since the return values of Tk_GetGC are shared, callers should never modify the graphics contexts returned by Tk_GetGC. If a graphics con- text must be modified dynamically, then it should be created by calling XCreateGC instead of Tk_GetGC. When a graphics context is no longer needed, Tk_FreeGC should be called to release it. There should be exactly one call to Tk_FreeGC for each call to Tk_GetGC. When a graphics context is no longer in use anywhere (i.e. it has been freed as many times as it has been gotten) Tk_FreeGC will release it to the X server and delete it from the database. KEYWORDS
graphics context Tk Tk_GetGC(3)
All times are GMT -4. The time now is 02:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy