[go: up one dir, main page]

File: TODO

package info (click to toggle)
libcommoncpp2 1.5.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,732 kB
  • ctags: 3,544
  • sloc: cpp: 28,089; sh: 9,512; ansic: 1,118; makefile: 319; xml: 5
file content (53 lines) | stat: -rw-r--r-- 1,350 bytes parent folder | download | duplicates (3)
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
* Merge 1.0.x and 1.1 beta together

* Add debug stuff like threadnames, mutexnames, etc, which can be used
  when auditing for deadlocks.

* Use "itimer" instead of alarm when available for higher resolution
  timing in setTimer/getTimer.

* Determine more pthread targets which may allow SIGALRM to be used
  beyond Linux for multiple timer instances.

* Optional support for Posix timers rather than alarm or setitimer
  for getTimer/setTimer when available on target platform.

* Introduce "stream" support for Pipe.

* Manual and overview documentation.

* GNU PTH specific source tree.

* redo exception handling

* why Solaris use select instead of poll for TCPService ???

* cleanup configure.in and config.h (two configure for public and private?)

WIN32

* merge Thread implementation (main cancellation)

* serial support (Serial, TTYStream, ttystream, TTYSession, SerialPort,
  SerialService)

* CommandOption and related class

* fifostream, FIFOSession classes (use NamedPipe ??) or document 
  not win32 support

* completion mode in RandomFile

* Conditional class

TESTS

* Detached behaviour
  - detached thread release all resources on termination
  - you can't wait termination of detached

* Do not restart if already started

* Test if Thread::isRunning say the truth (check all combination
  started suspended detached ended)