History log of /external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
d218f348c12b42a78fa0306d9a033bfa4f67238b 23-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove useless malloc() casts.

Created with coccinelle patch:

@@
expression E1, E2;
type T;
@@
- E1 = (T)malloc(E2)
+ E1 = malloc(E2)

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
354ebb48db8e66a853a58379a4808d5dcd1ceac3 07-Dec-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> cleanup code indent

Cleanup the code indent using:

find . -name *.c -exec Lindent {} \;

It's really a big change, but can fix almost all of
the indent problem in C code, although we can't
ensure all of the changes are right, but the error
changes are really few.

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
4548c6cf9bcdd96d8303caa4130ab638b61f8a30 19-Oct-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> Update FSF address

find . -type f -exec sed -i 's/675 Mass Ave, Cambridge, MA 02139, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;
find . -type f -exec sed -i 's/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
ec6edca7aa42b6affd989ef91b5897f96795e40f 18-Oct-2012 Chris Dearman <chris@mips.com> Add missing newline at end of file

This is a scripted change done using the following command:

find . -type d -name .git -prune -o \
-type f \! -name \*\~ \! -name .\#\* \
\! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \
xargs -0 sed -i -e '$a\'

Signed-off-by: Chris Dearman <chris@mips.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
2c28215423293e443469a07ae7011135d058b671 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Style and conformance changes.

1. Strip all leading space.
2. Move tst_exit() to main().
3. Remove tst_exit() from cleanup().
4. Remove cluebat comments.
5. Reduce some unnecessary whitespace.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
8fb1cdb0538640f295691929650408688537fb7f 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> More style cleanup.

Do a better job at detecting spurious leading and trailing whitespace in
branches and loop statements.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
df3eb16e38c6a163b0a7367c885679eed6140964 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> Deal with a lot of annoying style nits.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
4bb656a129f7507823e9e6d6b98b1a02fd80ef89 26-Feb-2009 subrata_modak <subrata_modak> Clear Trailing Whitespace. Signed-off-by: Michal Simek <monstr@monstr.eu>.
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
5314e6750045a289331c8436580e5a9c76192836 22-Jun-2007 vapier <vapier> Randy Dunlap writes:
Convert kernel/sched/pthreads/*.c to use the standard message output
functions instead of printf().

Convert kernel/sched/pthreads/pth_str01.c and pth_str03.c to use stdout
consistently for debug output instead of an occasional use of stderr.
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
17026e727501a01a5b44a6c734622acc71c0bbbb 21-Aug-2006 vapier <vapier> eat extraneous whitespace
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
32cc0acd99e36836b13056c6d0e3e62a115678f3 22-Jun-2006 vapier <vapier> use memset() instead of bzero()
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
63359766074f74cbca62e227965b8b97a0da0241 14-Jun-2004 robbiew <robbiew> Applied results cleanup patch from Gary Williams.
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
485333a9f1733ad19b168a3423bda1fa7dfe0c4a 03-Jun-2003 robbiew <robbiew> Relocation due to relocation of Open POSIX Test Suite tests
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
7913896ed0f72f21c5bb41eec676a8a46dc4f8b3 19-Feb-2003 robbiew <robbiew> Moved the pth_str tests into their own directory under pthreads, b/c I
plan on adding addition pthread tests.
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
033693ba5d1925a4903b50e40bc92f29c88cd3e0 25-Sep-2002 plars <plars> fix for ppc crosscompile errors in pth_str01.c and pth_str03.c
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
5e9c69e9a2c8ac10b2f3a2e526e3bb67cf9f59f3 04-Sep-2002 nstraz <nstraz> Applying patch from Steven J. Hill <sjhill@realitydiluted.com>.

This patch removes the deprecated use of 'sys_errlist' to use
'strerror' instead. Please apply. Thanks.

-Steve
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
a14c8e6a361e996278025f9295102b1573d0c665 28-May-2002 plars <plars> Small fix by Ihno Krumreich to make the test name right in a comment
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
15226cdbc46b1a13023484bd304b13aa47d42b87 10-Apr-2002 robbiew <robbiew> Applied patches submitted by:
Andreas Jaeger <aj@suse.de>
Randy Hron <x2hron@southernco.com>
Ihno Krumreich <ihno@caldera.de>
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
cba8e6a10f75b9a64a8fd7619adf5568aa19717d 05-Dec-2001 plars <plars> more warning cleanup
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
302dc759d85093a987c5ad4952324dd81cc8f939 28-Nov-2001 plars <plars> fixed compiler warnings
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
5302b75ee977ea43937215f4de730a269db8836b 25-Oct-2001 plars <plars> cleanup compiler warnings
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c
865695bbc89088b9526ea9045410e5afb70a985c 28-Aug-2001 plars <plars> restructuring work done, and adding about 400 testcases
/external/ltp/testcases/kernel/sched/pthreads/pth_str03.c