Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators Newbie reports: some posts show only the title and bottom-of-page menu. No text in the middle! Post 303029956 by Neo on Sunday 3rd of February 2019 07:50:34 PM
Old 02-03-2019
Hi,

Thanks,

Will look into it.

Does this happen on all discussions threads or just a few of them?
 

8 More Discussions You Might Find Interesting

1. Debian

Serial printer cutting last page of long reports...

Any ideas what could cause this? I have flow control set to XON XOFF on the printer and the on the OS level. (1 Reply)
Discussion started by: djsal
1 Replies

2. Shell Programming and Scripting

Menu at the bottom

Hi everyone, I'm new to Linux and bash scripting. Question? How can I display a menu at the bottom of the screen when displaying a content of a file with the less command? Like in gvim with bash support, when debugging or testing your script this text "Press enter or type command to... (0 Replies)
Discussion started by: Qwond
0 Replies

3. Shell Programming and Scripting

script to show menu option & need to be autorun

hi i need to perform following task have to write script to display menu like 1) login as user1 2) login as user2 3) login as user3 4) go to shell script will be run through root user user1, user2 will be logged to specific thr account. if 4th option selected it must pass... (3 Replies)
Discussion started by: anup13
3 Replies

4. Shell Programming and Scripting

Can someone show me how to create a menu?

Can someone show me how to create a menu? I want a script someone who is not unix literate can use, with some simple commands like ls -al a directory or find files based on a date, does anyone know how to make a simple menu ? Thanks. (4 Replies)
Discussion started by: taekwondo
4 Replies

5. Shell Programming and Scripting

Display a menu on bottom right of screen

Hi, I have a menu of around 10 lines with options. I want to display it in bottom right corner of screen for better display. I can do it with clear screen. But I don't want to use it, because it will clear the existing text. After one choice from menu is executed, the menu should just place... (3 Replies)
Discussion started by: som.nitk
3 Replies

6. Emergency UNIX and Linux Support

Grub Doesn't show menu

Hi guys. I have installed Acronis disk director in windows XP and allocate some free space to install Debian beside fedora. after completion i rebooted and now grub is in command line mode and does not show the menu list. (I didn't remove the fedora partition. I just allocate some space from... (1 Reply)
Discussion started by: majid.merkava
1 Replies

7. Web Development

Changing Title Page of Nagios Web

So I installed the latest version of nagios on my servers here. and the title of the page says "Nagios Core". I'd like to change this to somethign else that reflects what purpose the particular web interface being viewed serves. where do i go to change this? i'm running apache2 on my... (2 Replies)
Discussion started by: SkySmart
2 Replies

8. Ubuntu

Title bar top and bottom

Hello forum, Seems that only I have alot of questions regarding Ubuntu :D In Ubuntu 12.04 LTS the gnome I have been using gdm and lightdm. In lightdm the top and side bars are aka "unity" and can be removed using apt-get remove unity I need to do the same for menu bars gdm. I do not... (0 Replies)
Discussion started by: br1an
0 Replies
SbCondVar(3)							       Coin							      SbCondVar(3)

NAME
SbCondVar - A class for synchronizing access to global variables. Condition variables are used to protect global variables in an environment where multiple threads are running concurrently. SYNOPSIS
#include <Inventor/threads/SbCondVar.h> Public Member Functions SbCondVar (void) ~SbCondVar (void) SbBool wait (SbMutex &mutex) SbBool timedWait (SbMutex &mutex, SbTime period) void wakeOne (void) void wakeAll (void) Detailed Description A class for synchronizing access to global variables. Condition variables are used to protect global variables in an environment where multiple threads are running concurrently. Constructor &; Destructor Documentation SbCondVar::SbCondVar (void) [inline] Constructor. SbCondVar::~SbCondVar (void) [inline] Destructor. Member Function Documentation SbBool SbCondVar::wait (SbMutex &mutex) [inline] This method blocks the calling thread until another thread calls wakeOne() or wakeAll() on the SbCondVar object. SbBool SbCondVar::timedWait (SbMutex &mutex, SbTimeperiod) [inline] This method blocks the calling thread until another thread calls wakeOne() or wakeAll() on the object, but if this does not happen within period, the thread is woken again anyways. TRUE is returned when the thread wakes because either wakeOne() or wakeAll() was called, FALSE is returned if the wait times out. void SbCondVar::wakeOne (void) [inline] This method wakes up one of the threads waiting on this SbCondVar. void SbCondVar::wakeAll (void) [inline] This method wakes up all the threads waiting on this SbCondVar. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SbCondVar(3)
All times are GMT -4. The time now is 04:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy