aboutsummaryrefslogtreecommitdiff
path: root/system/pdp_control.c
diff options
context:
space:
mode:
authorTom Schouten <doelie@users.sourceforge.net>2003-02-05 06:05:39 +0000
committerTom Schouten <doelie@users.sourceforge.net>2003-02-05 06:05:39 +0000
commit7da1d644ff98078ad2a78d940ec991abff440b00 (patch)
treecd5942bd3be84b57228d4d978ec4753dbdc56a89 /system/pdp_control.c
parent41faefa9874e70af29f1ad5ebc2a55f0be9a9cff (diff)
pdp 0.8.3
svn path=/trunk/externals/pdp/; revision=382
Diffstat (limited to 'system/pdp_control.c')
-rw-r--r--system/pdp_control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/pdp_control.c b/system/pdp_control.c
index a7ee0c7..1053f6d 100644
--- a/system/pdp_control.c
+++ b/system/pdp_control.c
@@ -64,11 +64,11 @@ static void pdp_control_thread(t_pdp_control *x, t_floatarg f)
int t = (int)f;
if (t){
- post("pdp_control: switching on processing in thread");
+ post("pdp_control: pdp is now using its own processing thread");
pdp_queue_use_thread(1);
}
else {
- post("pdp_control: switching off processing in thread");
+ post("pdp_control: pdp is now using the main pd thread");
pdp_queue_use_thread(0);
}
}