Skip to content

Commit 7a90cb2

Browse files
Finished exercise 1
1 parent d4a5414 commit 7a90cb2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Ex1/Ex1.txt

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
** Task 3:
21

32
Concurrency
43
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?:
4342

4443

4544

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.

Ex1/ex1_go.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package main
22

33
import (
44
"fmt"
5-
"runtime"
65
"time"
76
)
87

@@ -21,11 +20,10 @@ func dec(){
2120
}
2221

2322
func main() {
24-
runtime.GOMAXPROCS(runtime.NumCPU())
2523

2624
go inc()
2725
go dec()
2826

29-
time.Sleep(100 * time.Millisecond)
27+
time.Sleep(1 * time.Second)
3028
fmt.Printf("Result: %d\n", i)
3129
}

Ex1/ex1_py.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,26 @@
22

33
i = 0
44

5-
def thread_inc():
5+
def increment():
66
global i
77
for j in range(1000000):
88
i += 1
99

10-
def thread_dec():
10+
def decrement():
1111
global i
1212
for p in range(1000000):
1313
i -= 1
1414

1515
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+
1819
inc.start()
1920
dec.start()
21+
2022
inc.join()
2123
dec.join()
22-
print(i)
24+
25+
print "Result:", i
2326

2427
main()

0 commit comments

Comments
 (0)