diff options
author | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-13 17:19:50 +0000 |
---|---|---|
committer | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-10-13 17:19:50 +0000 |
commit | e58797b132bbccc6aa50b4997916f3df768e4a98 (patch) | |
tree | f24ee6f458c7ec31cc027df6dea80b57e766a6fc /docs | |
parent | e1717253e43d1ac6926631b9ef17210513a4d0f0 (diff) | |
download | ATCD-e58797b132bbccc6aa50b4997916f3df768e4a98.tar.gz |
*** empty log message ***
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ACE-FMM.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/ACE-FMM.html b/docs/ACE-FMM.html new file mode 100644 index 00000000000..44d2fda2692 --- /dev/null +++ b/docs/ACE-FMM.html @@ -0,0 +1,47 @@ +<html> + +<head> +<title>ACE Frequently Made Mistakes</title> +</head> + +<body bgcolor=#ffffff> + +<center> + +<table border=0 width=450> +<tr> +<td> + +<h1>ACE_Task</h1> + +<ul> + <li><b>symptom:</b> ACE_Task::getq() returns the error 'resource temporarily unavailable' + + <li><b>probable cause:</b> Your Task is a subclass of ACE_Task<ACE_NULL_SYNCH> and + you are using it in a multithreaded program. Try using ACE_Task<ACE_MT_SYNCH> + instead. + +<hr noshade> + + <li><b>symptom:</b> ACE_Task::wait() throws an assert violation. + <li><b>probable cause:</b> When you activate()d your Task, you specified + THR_DETACHED, which causes wait() to be unable to perform what you + want it to. + +</ul> + + + + +</td> +</tr> + +</table> + +</center> + + +</body> + +</html> + |