Utility functions, prices, and negotiation


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Utility functions, prices, and negotiation
# 1  
Old 07-07-2008
Utility functions, prices, and negotiation

HPL-2008-81 Utility functions, prices, and negotiation - Wilkes, John
Keyword(s): utility theory, price functions, risk, negotiation, penalties, SLAs
Abstract: This paper provides an introduction to the use of utility theory with service level agreements between a computer-based service provider and a client. It argues that a consistent approach to utility, together with a flexible notion of pricing, can go a long way to clarifying some of the hidden assum ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to execute functions or initiate functions as command line parameters for below requirement?

I have 7 functions those need to be executed as command line inputs, I tried with below code it’s not executing function. If I run the ./script 2 then fun2 should execute , how to initiate that function I tried case and if else also, how to initiate function from command line if then... (8 Replies)
Discussion started by: saku
8 Replies

2. IP Networking

Doubt regarding TCP Options negotiation

Hi, I am aware that duirng the intial SYN, SYN-ACK, ACK (connection establishment) phase, both TCP ends advertize TCP options (or extended features) each would like to use for the connection. Ultimately both ends end up using TCP options commonly supported and advertized by both. My doubt... (2 Replies)
Discussion started by: jake24
2 Replies

3. Web Development

Data type to use for prices with commas

Hi everybody, I`m very new with PHP and Databases and I having the follow issue with prices data.. The original information is in CSV files. The prices have formatted with commas and dots as follow: 12,300.99 -->(thousands separated by commas) 3,500.25 -->(thousands separated... (10 Replies)
Discussion started by: cgkmal
10 Replies

4. Solaris

Server model and it's prices.

Hello Guruz, I would like to know the list of Solaris spar models and it's prices. (2 Replies)
Discussion started by: bullz26
2 Replies

5. Solaris

dhcp negotiation failed

on solaris 10, I use static ip address, and choose no dhcp during installation. But I keep receiving the following messages in my console: Mar 9 03:43:40 ellst rmclomv: DHCP negotiation failed, perhaps misconfigured or no DHCP server available Mar 9 03:49:58 ellst rmclomv: DHCP negotiation... (1 Reply)
Discussion started by: fredao
1 Replies
Login or Register to Ask a Question
ct_ctl_adopt(3CONTRACT) 			       Contract Management Library Functions				   ct_ctl_adopt(3CONTRACT)

NAME
ct_ctl_adopt, ct_ctl_abandon, ct_ctl_newct, ct_ctl_ack, ct_ctl_nack, ct_ctl_qack - common contract control functions SYNOPSIS
cc [ flag... ] file... -D_LARGEFILE64_SOURCE -lcontract [ library... ] #include <libcontract.h> int ct_ctl_adopt(int fd); int ct_ctl_abandon(int fd); int ct_ctl_newct(int fd, uint64_t evid, int templatefd); int ct_ctl_ack(int fd, uint64_t evid); int ct_ctl_nack(int fd, uint64_t evid); int ct_ctl_qack(int fd, uint64_t evid); DESCRIPTION
These functions operate on contract control file descriptors obtained from the contract(4) file system. The ct_ctl_adopt() function adopts the contract referenced by the file descriptor fd. After a successful call to ct_ctl_adopt(), the con- tract is owned by the calling process and any events in that contract's event queue are appended to the process's bundle of the appropriate type. The ct_ctl_abandon() function abandons the contract referenced by the file descriptor fd. After a successful call to ct_ctl_abandon() the process no longer owns the contract, any events sent by that contract are automatically removed from the process's bundle, and any critical events on the contract's event queue are automatically acknowledged. Depending on its type and terms, the contract will either be orphaned or destroyed. The ct_ctl_ack() function acknowledges the critical event specified byevid. If the event corresponds to an exit negotiation, ct_ctl_ack() also indicates that the caller is prepared for the system to proceed with the referenced reconfiguration. The ct_ctl_nack() function acknowledges the critical negotiation event specified by evid. The ct_ctl_nack() function also indicates that the caller wishes to block the proposed reconfiguration indicated by event evid. Depending on the contract type, this function might require certain privileges to be asserted in the process's effective set. This function will fail and return an error if the event repre- sented by evid is not a negotiation event. The ct_ctl_qack() function requests a new quantum of time for the negotiation specified by the event ID evid. The ct_ctl_newct() function instructs the contract specified by the file descriptor fd that when the current exit negotiation completes, another contract with the terms provided by the template specified by templatefd should be automatically written. RETURN VALUES
Upon successful completion, ct_ctl_adopt(), ct_ctl_abandon(), ct_ctl_newct(), ct_ctl_ack(), and ct_ctl_qack() return 0. Otherwise, they return a non-zero error value. ERRORS
The ct_ctl_adopt() function will fail if: EBUSY The contract is in the owned state. EINVAL The contract was not inherited by the caller's process contract or was created by a process in a different zone. The ct_ctl_abandon(), ct_ctl_newct(), ct_ctl_ack(), ct_ctl_nack(), and ct_ctl_qack() functions will fail if: EBUSY The contract does not belong to the calling process. The ct_ctl_newct() and ct_ctl_qack() functions will fail if: ESRCH The event ID specified by evid does not correspond to an unacknowledged negotiation event. The ct_ctl_newct() function will fail if: EINVAL The file descriptor specified by fd was not a valid template file descriptor. The ct_ctl_ack() and ct_ctl_nack() functions will fail if: ESRCH The event ID specified by evid does not correspond to an unacknowledged negotiation event. The ct_ctl_nack() function will fail if: EPERM The calling process lacks the appropriate privileges required to block the reconfiguration. The ct_ctl_qack() function will fail if: ERANGE The maximum amount of time has been requested. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
libcontract(3LIB), contract(4), attributes(5), lfcompile(5) SunOS 5.11 9 Aug 2007 ct_ctl_adopt(3CONTRACT)