fix bug/race in core

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4170 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2007-02-08 20:47:46 +00:00
parent 58310a9272
commit 5327a156ee
2 changed files with 11 additions and 2 deletions
+4 -1
View File
@@ -485,6 +485,8 @@ CF_CONTROLLED = (1 << 12) - Channel is under control
CF_NOMEDIA = (1 << 13) - Channel has no media
CF_SUSPEND = (1 << 14) - Suspend i/o
CF_EVENT_PARSE = (1 << 15) - Suspend control events
CF_NO_INDICATE = (1 << 16) - Disable Indications
CF_REPEAT_STATE = (1 << 17) - Tell the state machine to repeat a state
</pre>
*/
@@ -505,7 +507,8 @@ typedef enum {
CF_NOMEDIA = (1 << 13),
CF_SUSPEND = (1 << 14),
CF_EVENT_PARSE = (1 << 15),
CF_NO_INDICATE = (1 << 16)
CF_NO_INDICATE = (1 << 16),
CF_REPEAT_STATE = (1 << 17)
} switch_channel_flag_t;