Browse Source

--version returns the default temporary directory too

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@489 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
trutkin 21 years ago
parent
commit
3b096884ba
5 changed files with 1196 additions and 3 deletions
  1. +1
    -1
      TODO
  2. +2
    -2
      configure.in
  3. +1187
    -0
      doc/fsm.eps
  4. +1
    -0
      doc/transport.dox
  5. +5
    -0
      jackd/jackd.c

+ 1
- 1
TODO View File

@@ -13,6 +13,7 @@ TO BE DECIDED (owner)

- dropping the use of CAP_RESOURCE (nando)
- support for on-the-fly sampling rate change
- whether to default to triangular dithering the at 16bit. (swh)

TODO for 1.0 (owner)

@@ -42,7 +43,6 @@ TO THINK ABOUT
CLOSED (date,who,comment)

- added code to enforce the 'bufsize==2^x' rule (taybin) (2003/8/28)
- whether to default to triangular dithering the at 16bit. This was decided to leave off. (taybin) (2003/8/28)
- make sure that process callbacks always have nframes equal to buffersize (2003/08/27,done,kaiv)
- add Paul's graph/subgraph explanation to the design doc (2003/08/27,done,kaiv)
- add support for custom jackd --tmpdir in libjack (2003/05/06,done,jesse)


+ 2
- 2
configure.in View File

@@ -13,8 +13,8 @@ dnl micro version = incremented when implementation-only
dnl changes are made
dnl ---
JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=80
JACK_MICRO_VERSION=1
JACK_MINOR_VERSION=81
JACK_MICRO_VERSION=0

dnl ---
dnl HOWTO: updating the jack protocal version


+ 1187
- 0
doc/fsm.eps
File diff suppressed because it is too large
View File


+ 1
- 0
doc/transport.dox View File

@@ -170,6 +170,7 @@ sync_callbacks until ready.


@image html fsm.png "Transport State Transition Diagram"
@image latex fsm.eps "Transport State Transition Diagram"


@subsection transportclients Transport Clients


+ 5
- 0
jackd/jackd.c View File

@@ -402,6 +402,11 @@ main (int argc, char *argv[])

if (show_version) {
printf ( "jackd version " VERSION "\n");
#ifdef DEFAULT_TMP_DIR
printf ( "default tmp directory: " DEFAULT_TMP_DIR "\n");
#else
printf ( "default tmp directory: /tmp\n");
#endif
return -1;
}



Loading…
Cancel
Save