Enable hpet support in unix


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Enable hpet support in unix
# 1  
Old 02-21-2008
Enable hpet support in unix

Hi, I am new to this forum. I have a machine, the BIOS doesn't offer a choice to enable/disable HPET, I know in Linux, the hpet.c file can be modified to turn on and off the hpet, I am looking for a way to do this in UNIX as well. Is there already code existed for the modification? If not can someone point me to the right direction?

Thanks in advance.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

kernel panic - Failed back to HPET

Hello, I have a problem in my server: HP ProLiant DL580 G5 My OS is REDHAT 4.6 I have an error when I start the server: Badness in do_unblank_screen at drivers/char/vt.c:2878 ... Your time source seems to be instable or some driver is hogging interupts rip __smp_call_function +... (1 Reply)
Discussion started by: markke
1 Replies

2. UNIX for Advanced & Expert Users

To enable sqlplus for a user in unix

Hi I added a new user using root... now i need to enable sqlplus for that particular user... when i give sqlplus schemaname/pwd it gives $ sqlplus -bash: sqlplus: command not found PFB the OS am using $ uname -a Linux gs-portal-04 2.4.21-57.ELsmp #1 SMP Wed Apr 23... (4 Replies)
Discussion started by: Whiteboard
4 Replies

3. UNIX for Dummies Questions & Answers

Enable a shell to collect data from unix, return to windows

hi I am very new to UNIX. I need to retrieve data from a unix system and store it and display as output on a windows system. Initiation of procedure is through JAVASCRIPT-based buttons on a HTML page. This should cause a set of commands to run which colllect data from a unix based server and... (1 Reply)
Discussion started by: rossalyn_maxter
1 Replies

4. UNIX for Dummies Questions & Answers

regular user - enable printer - aix unix

how can I let a regular user enable a printer? (0 Replies)
Discussion started by: naes
0 Replies

5. UNIX for Advanced & Expert Users

UNIX support calls

Does anyone know some support issues on unix? I've worked on unix for years at the lower end and the only support I've done is reset print queues, send jobs to printer, kill phantom processes. I'm looking for a new job and I'm curious as to what other problems occur so I can research them. (1 Reply)
Discussion started by: moodswingz
1 Replies

6. UNIX for Dummies Questions & Answers

Processors that support Unix

Hello all! My boss wants we to learn a little bit of Unix in the next couple of months so I can broaden my opportunities. What processors will Unix run on? Intel... AMD32.... AMD64... Help Please. I need to build a computer that can support Unix to begin learning. Thanks (3 Replies)
Discussion started by: hkypro7
3 Replies

7. UNIX for Dummies Questions & Answers

How to enable a disabled Unix account on HP-UX

I am very new to Unix. We have a Unix user account that was disabled due to multiple tries with an invalid password. How to enable the account? (1 Reply)
Discussion started by: kajap
1 Replies

8. SuSE

How do I enable 3D support and change the bass and treble in SuSE 9.2?

I have a ATI Radeon 9600 Pro gfx card and was trying to figure out how to enable 3d support in linux. I had downloaded the ATI driver before and installed it and I ended up having to reinstall linux because it told me I was supposed to do something to some file that I didn't do so it restarted and... (3 Replies)
Discussion started by: CTroxtell21
3 Replies

9. UNIX for Dummies Questions & Answers

Unix/Linux Support?

If the strength of Unix based operating systems such as Linux and Red Hat are based on the fact that they are open-source. Who will provide support for personal computers or average users that uses these operating systems. Wouldn't the absence of some structured and formal support system inhibit... (8 Replies)
Discussion started by: wmosley2
8 Replies

10. UNIX for Dummies Questions & Answers

enable php & java support in apache

Hello guys, I am in desperate need for this information: I have an apache server running on linux (suse 8.1) I am unable to run php or java code on it, and I wonder what is wrong. for the php case, the browser asks me how he should treat the file, namely download it to my local drive or... (5 Replies)
Discussion started by: bionicfysh
5 Replies
Login or Register to Ask a Question
NE_SET_SESSION_FLAG(3)						neon API reference					    NE_SET_SESSION_FLAG(3)

NAME
ne_set_session_flag, ne_get_session_flag - set and retrieve session flags SYNOPSIS
#include <ne_request.h> void ne_set_session_flag(ne_session *sess, ne_session_flag flag, int value); int ne_get_session_flag(ne_session *sess, ne_session_flag flag); DESCRIPTION
The ne_set_session_flag function enables or disables a session flag. Passing a non-zero value argument enables the flag, and zero disables it. The following flags are defined: NE_SESSFLAG_PERSIST disable this flag to prevent use of persistent connections NE_SESSFLAG_ICYPROTO enable this flag to enable support for non-HTTP ShoutCast-style "ICY" responses NE_SESSFLAG_SSLv2 disable this flag to disable support for the SSLv2 protocol NE_SESSFLAG_RFC4918 enable this flag to enable support for RFC4918-only WebDAV features; losing backwards-compatibility with RFC2518 servers NE_SESSFLAG_CONNAUTH enable this flag if an RFC-violating connection-based HTTP authentication scheme is in use NE_SESSFLAG_TLS_SNI disable this flag if a server is used which does not correctly support the TLS SNI extension NE_SESSFLAG_EXPECT100 enable this flag to enable the request flag NE_REQFLAG_EXPECT100 for new requests RETURN VALUE
The ne_get_session_flag function returns zero if a flag is disabled, less than zero if the flag is not supported, or greater than zero if the flag is enabled. SEE ALSO
ne_session_create, ne_set_request_flag. AUTHOR
Joe Orton <neon@lists.manyfish.co.uk> Author. COPYRIGHT
neon 0.30.0 31 July 2013 NE_SET_SESSION_FLAG(3)