Concept Framework 2.0 documentation Contents | Index

standard.lib.shared.share_link_count

Name Version Deprecated
share_link_count version 1.0 no

Prototype:
number share_link_count(number share_handle)

Parameters:
share_handle      the shared memory handle as returned by share_create or share_open.

Description:
Gets the links count to a shared segment.

Example:
import standard.lib.shared

class Main {
	function Main() {
		var ctx=share_open(123);
		echo ctx;
		share_lock(ctx);
		for (var i=0;i<200000;i++) {
			share_set(ctx,""+i);
		}
		echo "done lock";
		echo "SH:"+share_unlock(ctx)+"\n";
		echo "SH:"+share_unlock(ctx)+"\n";
		echo share_get(ctx);
		echo "\n";
		echo typeof this;
		while (1) {
			echo ""+share_link_count(ctx)+"\r";
		}
	}
}

Returns:
Returns the number of links to a shared memory segment.

Documented by Eduard Suica, generation time: Fri Jan 21 18:06:21 2011 GMT(c)2011 RadGs Software