Bugs item #1636828, was opened at 2007-01-16 15:23
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=482468&aid=1636828&group_id=56967

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Core
Group: MonetDB4 CVS Head
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Marcin Zukowski (e-r00)
Assigned to: Nobody/Anonymous (nobody)
Summary: fork() behaves strange

Initial Comment:
I have some problems with fork, for example:
$ cat y.mil:
  fork(print(1));
$ Mserver y.mil
MonetDB>!ERROR: interpret: no matching MIL operator to 'ÛÛÛÛÛÛÛÛ (int)'.

But sometimes it does:
$ cat x.mil
module(unix);
module(alarm);
PROC blah() : void {
        bat("blah").insert(1,1);
        commit();
}
destroy("blah"); commit();
var x := new(int, int).rename("blah").persists(true);
commit();
fork(blah());
sleep(1);
bat("blah").print();
$ Mserver x.mil
#-----------------#
# h     t         # name
# int   int       # type
#-----------------#
[ 1,      1       ]
$ Mserver < x.mil
!ERROR: interpret: no matching MIL operator to 'sleep()'.
!MAYBE YOU MEAN:
!       sleep(int) : void
#-----------------#
# h     t         # name
# int   int       # type
#-----------------#

Any ideas?


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=482468&aid=1636828&group_id=56967

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Monetdb-bugs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-bugs

Reply via email to