How to ring the system bell many times without pause?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to ring the system bell many times without pause?
# 8  
Old 10-17-2012
Thank you for all your responses. I think the fraction of a second pauses will work for me. For some reason I thought the minimum time for sleep was 1s but 0.1s should be okay.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

System call failed with 127 .. after 500 times when called in loop

Hi Experts, I have a code like this. ===== #include.... int main() { int count = 0; while(1){ printf("\n Interation number is: %d \n ",count); rv = system(" test.sh > log.txt " ); if (-1 == rv) { printf("Could not generate static log: error... (12 Replies)
Discussion started by: binnyjeshan
12 Replies

2. Solaris

System hangs (freezes) on system bell/beep

I am running OpenIndiana development version oi_148 32-bit on a seven-year-old Dell Inspiron 8600. Seems to be running fine except for one particular annoyance: It freezes whenever a system bell/beep plays. I have mitigated this by turning the system bell off in gnome-terminal, which I use... (3 Replies)
Discussion started by: DeadBadger
3 Replies

3. HP-UX

Any Way to pause/unpause system execution in HP-UX 11.11 and 11.23?

This may seem like an odd question, but I've heard that on old Alpha servers running OpenVMS, you could pause the system so that the OS is essentially suspended for a small period of time, then unpause it and it would pick up where it left off. During the pause, all CPU cycles would be halted, all... (3 Replies)
Discussion started by: deckard
3 Replies

4. UNIX for Dummies Questions & Answers

How the system determines password expiry times?

Hi, lads. Good day. I have one question, how the system determines password expiry times? Thanks in advance (1 Reply)
Discussion started by: yjck71
1 Replies

5. AIX

Urgent: Error log about TOKEN ring

Hi Everyone: Last Thursday my system come up those error log and haven't show up any details. Does anyone know what it mean? I need help :confused: 9359F226 0424184208 N U LVDD 00D2B9FE 0424183208 N U tok0 D0775966 0424182908 N U tok0 A9428A1A 0424170108 N U tok0 71B416E1 ... (0 Replies)
Discussion started by: fla22
0 Replies

6. Shell Programming and Scripting

Tar-ring a directory

Hello I am trying to tar a whole directory. My problem is that I have to omitt a special subdirectory. Can you tell my how I am supposed to do that? Unfortunately I am not very good in regular expressions and in programming. :( Thanks for any help. Greetings Marcus (1 Reply)
Discussion started by: Fwurm
1 Replies

7. Programming

system("PAUSE") Problem.....

Ok, here's the situation....I have this code... #include <iostream.h> #include <stdlib.h> int main() { cout << "\nBlah, and Blah\n\n"; system("PAUSE"); return 0; } Now, "system("PAUSE")" gets executed before "cout" does, and I have... (2 Replies)
Discussion started by: mbolthouse
2 Replies

8. UNIX for Dummies Questions & Answers

SuSE install on a Packard Bell m415

hi everybody, I just installed Suse on an old Packard Bell. When the install was at detecting my moden, it hung. I couldn't free it sooooo, I pressed ctrl+alt+backspace. Yup that killed the process alright. The machine went right down and upon reboot it is now at the KDE welcome page. Here... (2 Replies)
Discussion started by: joetech
2 Replies
Login or Register to Ask a Question
XDEVICEBELL(3)															    XDEVICEBELL(3)

NAME
XDeviceBell - ring a bell on a device supported through the input extension SYNOPSIS
#include <X11/extensions/XInput.h> Status XDeviceBell( Display *display, XDevice *device, XID feedbackclass, XID feedbackid, int percent); display Specifies the connection to the X server. device Specifies the device with which the bell is associated. feedbackclass Specifies the class of the feedback with which the bell is associated. feedbackid Specifies the id of the feedback with which the bell is associated. percent Specifies the volume in the range -100 to 100 at which the bell should be rung. DESCRIPTION
The XDeviceBell request causes the server to ring a bell on the specified feedback of the specified device, if possible. The specified volume is relative to the base volume for the bell. If an invalid device is specified, a BadDevice error will be returned. The feedbackclass and feedbackid parameters contain values returned by an XGetFeedbackControl request and uniquely identify the bell to ring. If a feedbackclass is specified that does not support a bell, or if a nonexistent feedbackid is specified, or a percent value is specified that is not in the range -100 to 100, a BadValue error will be returned. The volume at which the bell is rung when the percent argument is nonnegative is: base - [(base * percent) / 100] + percent The volume at which the bell rings when the percent argument is negative is: base + [(base * percent) / 100] To change the base volume of the bell, use XChangeFeedbackControl. XDeviceBell can generate a BadDevice or a BadValue error. DIAGNOSTICS
BadDevice An invalid device was specified. The specified device does not exist, or has not been opened by this client via XOpenInputDevice. BadValue An invalid feedbackclass, feedbackid, or percent value was specified. SEE ALSO
XChangeFeedbackControl(3), XBell(3) 05/15/2013 XDEVICEBELL(3)