about summary refs log tree commit diff stats
path: root/themes/complex
Commit message (Expand)AuthorAgeFilesLines
* Rename mucconf wins into conf winsPaul Fariello2018-09-051-1/+1
* Allow vertical positioning of all windowsJames Booth2016-09-231-1/+5
* Add /inputwin top|bottom commandJames Booth2016-09-191-0/+1
* Added /roster show|hide unsubscribedJames Booth2016-02-071-0/+1
* Implemented /console private settingJames Booth2016-02-031-0/+1
* Added console.chat preferenceJames Booth2016-02-031-0/+1
* Updated themesJames Booth2016-02-011-1/+0
* Allow splitting roster rooms by conference serverJames Booth2016-02-011-0/+1
* Added roster.rooms.private.char settingJames Booth2016-01-311-1/+2
* Updated themesJames Booth2016-01-281-0/+2
* Updated themesJames Booth2016-01-241-0/+3
* Added /roster show|hide contactsJames Booth2016-01-201-0/+1
* Added /roster rooms position preferenceJames Booth2016-01-191-0/+1
* Added /roster unread preferrenceJames Booth2016-01-171-0/+1
* Added /roster room unread preferenceJames Booth2016-01-171-0/+1
* Updated themesJames Booth2016-01-091-0/+1
* Added roster rooms preferenceJames Booth2016-01-021-0/+1
* Added console muc message setting to themesJames Booth2015-12-301-0/+1
* Tidied roster commandsJames Booth2015-11-221-9/+10
* Added /roster char resourceJames Booth2015-11-221-0/+1
* Updated themesJames Booth2015-11-221-0/+1
* Updated themesJames Booth2015-11-221-0/+3
* Added /roster char contactJames Booth2015-11-201-0/+1
* Added /roster char headerJames Booth2015-11-191-0/+1
* Changed roster defaults, updated themesJames Booth2015-11-191-1/+6
* Fix statusbar time in complex themeSteven Erenst2015-10-281-1/+1
* Updated themesJames Booth2015-10-141-0/+1
* Updated themesJames Booth2015-09-301-1/+6
* Added roster.empty to themesJames Booth2015-08-201-0/+1
* Updated themes time display settingsJames Booth2015-07-011-2/+2
* Moved setting otr.warn -> enc.warnJames Booth2015-06-211-1/+1
* Added option to show jids in occupants panelJames Booth2015-04-121-0/+1
* Added /time statusbar preferenceJames Booth2015-03-101-0/+1
* Updated themes for releaseJames Booth2015-02-261-0/+22
akkartik/mu/commit/html/channel.mu.html?h=main&id=c5ffb6e1cc9c5ff880d037c53b8ebc8562be0008'>c5ffb6e1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79



                                                                                          
                              






                                                                                         

                                                                                                 
                     



                              
                              
                             














                                                                                             

                                                                                                                                                                   



                                                                                                                  
                                                             
                                                                               
                                                                                                


                                                                                                     
                                       




                                                                          

                                                                                                                                                                   



                                                                                               
                                                                                                
                               
                                       



                                           
                                                                                                                                                                   










                                                                                                                                      
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - channel.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v1">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1em; }
.Delimiter { color: #c000c0; }
.Comment { color: #8080ff; }
.Constant { color: #008080; }
.Special { color: #ff6060; }
.muControl { color: #804000; }
.muRecipe { color: #ff8700; }
-->
</style>

<script type='text/javascript'>
<!--

-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># example program: communicating between routines using channels</span>

<span class="muRecipe">recipe</span> producer [
  <span class="Comment"># produce numbers 1 to 5 on a channel</span>
  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
  chan:address:channel<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
  <span class="Comment"># n = 0</span>
  n:number<span class="Special"> &lt;- </span>copy <span class="Constant">0:literal</span>
  <span class="Delimiter">{</span>
    done?:boolean<span class="Special"> &lt;- </span>lesser-than n:number, <span class="Constant">5:literal</span>
    <span class="muControl">break-unless</span> done?:boolean
    <span class="Comment"># other threads might get between these prints</span>
    $print <span class="Constant">[produce: ]</span>, n:number, <span class="Constant">[ </span>
<span class="Constant">]</span>
    chan:address:channel<span class="Special"> &lt;- </span>write chan:address:channel, n:number
    n:number<span class="Special"> &lt;- </span>add n:number, <span class="Constant">1:literal</span>
    <span class="muControl">loop</span>
  <span class="Delimiter">}</span>
]

<span class="muRecipe">recipe</span> consumer [
  <span class="Comment"># consume and print integers from a channel</span>
  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
  chan:address:channel<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
  <span class="Delimiter">{</span>
    <span class="Comment"># read an integer from the channel</span>
    n:number, chan:address:channel<span class="Special"> &lt;- </span>read chan:address:channel
    <span class="Comment"># other threads might get between these prints</span>
    $print <span class="Constant">[consume: ]</span>, n:number, <span class="Constant">[ </span>
<span class="Constant">]</span>
    <span class="muControl">loop</span>
  <span class="Delimiter">}</span>
]

<span class="muRecipe">recipe</span> main [
  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
  chan:address:channel<span class="Special"> &lt;- </span>init-channel <span class="Constant">3:literal</span>
  <span class="Comment"># create two background 'routines' that communicate by a channel</span>
  routine1:number<span class="Special"> &lt;- </span>start-running producer:<span class="muRecipe">recipe</span>, chan:address:channel
  routine2:number<span class="Special"> &lt;- </span>start-running consumer:<span class="muRecipe">recipe</span>, chan:address:channel
  wait-for-routine routine1:number
  wait-for-routine routine2:number
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->