blob: fc1c0aa8d5e0da940969dd3a2652de10b00a4a5d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
function sleep(time) {
start = java.lang.System.currentTimeMillis();
while (start + time > java.lang.System.currentTimeMillis())
;
}
loadModule('/System/Scripting');
file = getSharedObject("file");
print("Thread A: " + file);
for (var i = 1; i< 15; i++) {
print("Thread A, " + i);
sleep(6);
}