Changeset 3915

Show
Ignore:
Timestamp:
11/03/07 09:10:12 (14 months ago)
Author:
pmoura
Message:

Updated the XSB config file to recognize thread_private/1 directives.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/configs/xsb.config

    r3914 r3915  
    478478    '$lgt_rewrite_and_copy_pl_directive_pis'(PI, CPI). 
    479479'$lgt_rewrite_and_copy_pl_directive'(table(PIs), table(CPIs)) :- 
     480    '$lgt_rewrite_and_copy_pl_directive_pis'(PIs, CPIs). 
     481'$lgt_rewrite_and_copy_pl_directive'(thread_private(PIs), thread_private(CPIs)) :- 
    480482    '$lgt_rewrite_and_copy_pl_directive_pis'(PIs, CPIs). 
    481483'$lgt_rewrite_and_copy_pl_directive'(thread_shared(PIs), thread_shared(CPIs)) :- 
  • trunk/RELEASE_NOTES.txt

    r3914 r3915  
    2121    Updated the B-Prolog config file to recognize eager_consume/1 directives. 
    2222    Updated the XSB config file to recognize use_subsumptive_tabling/1, 
    23     use_variant_tabling/1, index/1, and thread_shared/1 directives. 
     23    use_variant_tabling/1, index/1, thread_private/1, and thread_shared/1  
     24    directives. 
    2425    Updated the YAP config file to recognize thread_local/1 directives. 
    2526    Updated the SICStus Prolog config files to recognize volatile/1 directives. 
     
    3233    Updated the "xsbmtlgt.sh" integration script to start XSB-MT using the  
    3334    new command-line option "--shared_predicates" (requires current XSB CVS  
    34     version). 
    35  
    36     Updated the Windows GUI installer to support running Logtalk with XSB-MT. 
     35    version). Updated the Windows GUI installer to support running Logtalk  
     36    with XSB-MT. 
    3737 
    3838    Added a multi-threading example, "barriers", of barrier synchronization.