Shezhu Resource Sharing System 1.19 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shezhu Resource Sharing System 1.19 (Default branch)
# 1  
Old 01-11-2008
Shezhu Resource Sharing System 1.19 (Default branch)

Image The Shezhu Resource Sharing System is an application for scheduling and booking shared resources such as rooms and equipment. The client only needs a modern Web browser. It has a user friendly point and click interface, visual filters for making block/repeat bookings, concurrent users and double booking prevention, allows local site customization, and supports configurable academic term/semester blocks. License: GNU General Public License v3 Changes:
This release supports Apache 2.2 (default) and MySQL 5 (default). It's anchored to UTC rather than local time, making it more portable. It's licensed under GPLv3.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

Global and non-global zone resource sharing - tricky

hi all, Just a simple question but i cant get the answers in the book - In my globalzone , assuming i have 4 cpus (psrinfo -pv = 0-3), if i set dedicated-cpu (ncpus=2) for my local zone Is my globalzone left with 2 cpus or still 4 cpus ? Does localzone "resource reservation.e.g. cpu in... (6 Replies)
Discussion started by: javanoob
6 Replies

2. UNIX for Advanced & Expert Users

Asynchronus resource sharing between processes?

Hi, say I have some pages which I want to share between two processes asynchronously. Which IPC (inter process communication) mechanism is best for this kind of job to complete? Is the same mechanism work for synchronous sharing? Thanks for the replies. sanzee (2 Replies)
Discussion started by: sanzee007
2 Replies

3. Shell Programming and Scripting

Checking running process status using "grep" on multiple servers in load sharing system.

Suppose i have 3 different servers say x,y and z. Im running some process say ABC and 40 instances for the same is being created. In load sharing suppose on server x, 20 instances are running server y, 10 instances are running server z, 10 instances are running. While checking the... (1 Reply)
Discussion started by: ankitknit
1 Replies

4. AIX

How to install system resource monitoring utilities?

Hello Experts, Topas, nmon, vmon & top monitoring tool not working. We use above AIX utilities to identify cpu and memory usage. I can execute the topas but on execution I receive "SpmiCreateStatSet can't create StatSet" message & no output. I use AIX 5.3, TL3. Please assist to restore... (4 Replies)
Discussion started by: sumit30
4 Replies

5. UNIX for Dummies Questions & Answers

Text book / online resource for learning to program at system/kernel level

Is there any book/resource that one can refer to, to be able to write programs at kernel/system level.. I'm looking for a programming book that could serve as a guide to write kernel codes / system level programming etc.. I have Tannenbaum's Design and Implementation. It addresses theoretical... (2 Replies)
Discussion started by: vishwamitra
2 Replies

6. Linux

Please help me, about the file sharing with windows system

Did anybody can teach me how to set the premission in the samba server? How to i set the premission in one folder but two access right. With one folder but the user access rights is diffirent. One user can full access the folder, and another one user only read only. thx for helping... (1 Reply)
Discussion started by: cloudlor
1 Replies

7. IP Networking

sharing of IP address for load sharing avoiding virtual server & redirection machine

I have RedHat 9.0 installed on three of my servers (PIII - 233MHz) and want that they share a common IP address so that any request made reaches each of the servers. Can anyone suggest how should I setup my LAN. I'm new to networking in Linux so please elaborate and would be thankful for a timely... (2 Replies)
Discussion started by: Rakesh Ranjan
2 Replies
Login or Register to Ask a Question
Resource(3I)															      Resource(3I)

NAME
Resource - shared object SYNOPSIS
#include <InterViews/resource.h> DESCRIPTION
Resource is a class that provides a simple form of reference counting for shared objects. Every resource has a reference count that is initially set to zero and must be explicitly incremented through a call to Reference. A resource should not be deleted like other objects; instead, the static member function unref should be used to unreference the object. When a resource is unreferenced, the reference count is decremented unless it is already zero. If the count is zero, the object is destroyed. PUBLIC OPERATIONS
Resource() Create a new resource object with its reference count set to zero. void ref() Increment the resource's reference count. void unref() Decrement the resource's reference count, if it is positive, and delete this if the count is zero. static void ref(Resource*) If the resource is not nil, call ref on it. Otherwise do nothing. static void unref(Resource*) If the resource is not nil, call unref on it. Otherwise do nothing. void Reference() This function is equivalent to ref and is provided solely for backward compatibility. It will be removed in a future version. void Unreference() This function is equivalent to unref and is provided solely for backward compatibility. It will be removed in a future version. FRIEND OPERATIONS
void Unref(Resource*) This function is equivalent to static unref and is provided solely for backward compatibility. It will be removed in a future ver- sion. BUGS
This scheme relies on manual referencing, which is more efficient, but also more dangerous. When garbage collection is supported by the runtime system, resources will be unnecessary. InterViews Reference Manual Resource(3I)