@@ -1,4 +1,4 @@
-Copyright (c) <year> <owner> All rights reserved.
+Copyright (c) 2023 Author:SVI All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
@@ -49,7 +49,7 @@ flowchart LR
mutex
in
out
- LIFO
+ FIFO
subgraph property
len
cap
@@ -58,9 +58,9 @@ flowchart LR
end
flow1 --> |data|in
mutex --> in
- in --> LIFO
- LIFO --> out
- mutex --> LIFO
+ in --> FIFO
+ FIFO --> out
+ mutex --> FIFO
out --> |data|flow2
mutex --> out
```