mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
The identifier "ShowCouroutines" needs to be modified to "ShowCoroutines" in order to rectify the typographical error. v6.0.63 (#3703)
Correct the word errors by changing "ShowCoroutines" to "ShowCoroutines". --------- Co-authored-by: chundonglinlin <chundonglinlin@163.com> Co-authored-by: john <hondaxiao@tencent.com>
This commit is contained in:
parent
2777351c4b
commit
34747fa1a3
3 changed files with 8 additions and 7 deletions
|
@ -7,6 +7,7 @@ The changelog for SRS.
|
||||||
<a name="v6-changes"></a>
|
<a name="v6-changes"></a>
|
||||||
|
|
||||||
## SRS 6.0 Changelog
|
## SRS 6.0 Changelog
|
||||||
|
* v6.0, 2023-07-27, Merge [#3703](https://github.com/ossrs/srs/pull/3703): The identifier "ShowCouroutines" needs to be modified to "ShowCoroutines" in order to rectify the typographical error.. v6.0.62 (#3703)
|
||||||
* v6.0, 2023-07-26, Merge [#3699](https://github.com/ossrs/srs/pull/3699): Bugfix: Eliminate the redundant declaration of the _srs_rtc_manager variable.. v6.0.61 (#3699)
|
* v6.0, 2023-07-26, Merge [#3699](https://github.com/ossrs/srs/pull/3699): Bugfix: Eliminate the redundant declaration of the _srs_rtc_manager variable.. v6.0.61 (#3699)
|
||||||
* v6.0, 2023-07-21, Merge [#3695](https://github.com/ossrs/srs/pull/3695): API: Fix HTTPS callback issue using SNI in TLS client handshake. v6.0.61 (#3695)
|
* v6.0, 2023-07-21, Merge [#3695](https://github.com/ossrs/srs/pull/3695): API: Fix HTTPS callback issue using SNI in TLS client handshake. v6.0.61 (#3695)
|
||||||
* v6.0, 2023-07-18, Merge [#3515](https://github.com/ossrs/srs/pull/3515): WebRTC: Support config the bitrate of transcoding AAC to Opus. v6.0.60 (#3515)
|
* v6.0, 2023-07-18, Merge [#3515](https://github.com/ossrs/srs/pull/3515): WebRTC: Support config the bitrate of transcoding AAC to Opus. v6.0.60 (#3515)
|
||||||
|
|
|
@ -5,9 +5,9 @@ Usage:
|
||||||
nn_coroutines
|
nn_coroutines
|
||||||
nn_coroutines 1000
|
nn_coroutines 1000
|
||||||
'''
|
'''
|
||||||
class NnCouroutines(gdb.Command):
|
class NnCoroutines(gdb.Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(NnCouroutines, self).__init__('nn_coroutines', gdb.COMMAND_DATA)
|
super(NnCoroutines, self).__init__('nn_coroutines', gdb.COMMAND_DATA)
|
||||||
|
|
||||||
# https://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html#Python-API
|
# https://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html#Python-API
|
||||||
def invoke(self, arg, from_tty):
|
def invoke(self, arg, from_tty):
|
||||||
|
@ -34,15 +34,15 @@ class NnCouroutines(gdb.Command):
|
||||||
# Result.
|
# Result.
|
||||||
print('total coroutines: %s'%(nn_coroutines))
|
print('total coroutines: %s'%(nn_coroutines))
|
||||||
|
|
||||||
NnCouroutines()
|
NnCoroutines()
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Usage:
|
Usage:
|
||||||
show_coroutines
|
show_coroutines
|
||||||
'''
|
'''
|
||||||
class ShowCouroutines(gdb.Command):
|
class ShowCoroutines(gdb.Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super(ShowCouroutines, self).__init__('show_coroutines', gdb.COMMAND_DATA)
|
super(ShowCoroutines, self).__init__('show_coroutines', gdb.COMMAND_DATA)
|
||||||
|
|
||||||
# https://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html#Python-API
|
# https://sourceware.org/gdb/current/onlinedocs/gdb/Python-API.html#Python-API
|
||||||
def invoke(self, arg, from_tty):
|
def invoke(self, arg, from_tty):
|
||||||
|
@ -67,4 +67,4 @@ class ShowCouroutines(gdb.Command):
|
||||||
print('Error: prev=%s, this=%s, next=%s'%(prev, pthis, pnext))
|
print('Error: prev=%s, this=%s, next=%s'%(prev, pthis, pnext))
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
|
|
||||||
ShowCouroutines()
|
ShowCoroutines()
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
|
|
||||||
#define VERSION_MAJOR 6
|
#define VERSION_MAJOR 6
|
||||||
#define VERSION_MINOR 0
|
#define VERSION_MINOR 0
|
||||||
#define VERSION_REVISION 62
|
#define VERSION_REVISION 63
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue