File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
- ** Task 3:
2
1
3
2
Concurrency
4
3
Concurrency means that a part of a program, a thread, can run independent of other part of a process that is running.
@@ -43,6 +42,6 @@ What does func GOMAXPROCS(n int) int change?:
43
42
44
43
45
44
46
- ** Task 4
47
- When we run the code we see that the result is "never" 0, it's some number between -1 000 000 and 1 000 000.
48
- This is because there's no control over the concurrency.
45
+
46
+ When we run the code we see that the result is "never" 0, it's some number between -1 000 000 and 1 000 000.
47
+ This is because there's no control over the concurrency.
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package main
2
2
3
3
import (
4
4
"fmt"
5
- "runtime"
6
5
"time"
7
6
)
8
7
@@ -21,11 +20,10 @@ func dec(){
21
20
}
22
21
23
22
func main () {
24
- runtime .GOMAXPROCS (runtime .NumCPU ())
25
23
26
24
go inc ()
27
25
go dec ()
28
26
29
- time .Sleep (100 * time .Millisecond )
27
+ time .Sleep (1 * time .Second )
30
28
fmt .Printf ("Result: %d\n " , i )
31
29
}
Original file line number Diff line number Diff line change 2
2
3
3
i = 0
4
4
5
- def thread_inc ():
5
+ def increment ():
6
6
global i
7
7
for j in range (1000000 ):
8
8
i += 1
9
9
10
- def thread_dec ():
10
+ def decrement ():
11
11
global i
12
12
for p in range (1000000 ):
13
13
i -= 1
14
14
15
15
def main ():
16
- inc = Thread (target = thread_inc , args = (),)
17
- dec = Thread (target = thread_dec , args = (),)
16
+ inc = Thread (target = increment , args = (),)
17
+ dec = Thread (target = decrement , args = (),)
18
+
18
19
inc .start ()
19
20
dec .start ()
21
+
20
22
inc .join ()
21
23
dec .join ()
22
- print (i )
24
+
25
+ print "Result:" , i
23
26
24
27
main ()
You can’t perform that action at this time.
0 commit comments