All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tkill.2: tfix
@ 2021-07-24  4:58 Sagar Patel
  2021-07-25 19:52 ` Alejandro Colomar (man-pages)
  0 siblings, 1 reply; 5+ messages in thread
From: Sagar Patel @ 2021-07-24  4:58 UTC (permalink / raw)
  To: linux-man; +Cc: alx.manpages, Sagar Patel

Correct function signature by adding missing parenthesis.
---
 man2/tkill.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/tkill.2 b/man2/tkill.2
index 6ff930e17..6e1afcd36 100644
--- a/man2/tkill.2
+++ b/man2/tkill.2
@@ -39,7 +39,7 @@ tkill, tgkill \- send a signal to a thread
 .PP
 .B #include <signal.h>
 .PP
-.BI "int tgkill, pid_t " tgid ", pid_t " tid ", int " sig );
+.BI "int tgkill(pid_t " tgid ", pid_t " tid ", int " sig );
 .fi
 .PP
 .IR Note :
-- 
2.30.1 (Apple Git-130)


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] tkill.2: tfix
  2021-07-24  4:58 [PATCH] tkill.2: tfix Sagar Patel
@ 2021-07-25 19:52 ` Alejandro Colomar (man-pages)
  2021-07-28 16:20   ` Sagar Patel
  0 siblings, 1 reply; 5+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-07-25 19:52 UTC (permalink / raw)
  To: Sagar Patel, linux-man

Hi Sagar,

On 7/24/21 6:58 AM, Sagar Patel wrote:
> Correct function signature by adding missing parenthesis.

Oops, my bad!  Patch applied.

Thanks,

Alex

> ---
>   man2/tkill.2 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/tkill.2 b/man2/tkill.2
> index 6ff930e17..6e1afcd36 100644
> --- a/man2/tkill.2
> +++ b/man2/tkill.2
> @@ -39,7 +39,7 @@ tkill, tgkill \- send a signal to a thread
>   .PP
>   .B #include <signal.h>
>   .PP
> -.BI "int tgkill, pid_t " tgid ", pid_t " tid ", int " sig );
> +.BI "int tgkill(pid_t " tgid ", pid_t " tid ", int " sig );
>   .fi
>   .PP
>   .IR Note :
> 


-- 
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tkill.2: tfix
  2021-07-25 19:52 ` Alejandro Colomar (man-pages)
@ 2021-07-28 16:20   ` Sagar Patel
  2021-07-28 20:22     ` Alejandro Colomar (man-pages)
  0 siblings, 1 reply; 5+ messages in thread
From: Sagar Patel @ 2021-07-28 16:20 UTC (permalink / raw)
  To: Alejandro Colomar (man-pages); +Cc: linux-man

Thank you, Alex!

> Oops, my bad!  Patch applied.

If you don't mind me asking, where has the patch been applied? I don't
see it on the kernel.org repo [1].

[1]: https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/

—Sagar Patel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tkill.2: tfix
  2021-07-28 16:20   ` Sagar Patel
@ 2021-07-28 20:22     ` Alejandro Colomar (man-pages)
  2021-07-28 23:49       ` Sagar Patel
  0 siblings, 1 reply; 5+ messages in thread
From: Alejandro Colomar (man-pages) @ 2021-07-28 20:22 UTC (permalink / raw)
  To: Sagar Patel; +Cc: linux-man

Hi Sagar.

On 7/28/21 6:20 PM, Sagar Patel wrote:
> Thank you, Alex!

:)

> 
>> Oops, my bad!  Patch applied.
> 
> If you don't mind me asking, where has the patch been applied? I don't
> see it on the kernel.org repo [1].

Sure, I don't yet have a kernel account, so my tree is on github: 
<https://github.com/alejandro-colomar/man-pages>.

I forwarded it right now in a patch set to Michael's tree (the one in 
kernel.org).

Cheers,

Alex

> 
> [1]: https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/
> 
> —Sagar Patel
> 


-- 
Alejandro Colomar
Linux man-pages comaintainer; https://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] tkill.2: tfix
  2021-07-28 20:22     ` Alejandro Colomar (man-pages)
@ 2021-07-28 23:49       ` Sagar Patel
  0 siblings, 0 replies; 5+ messages in thread
From: Sagar Patel @ 2021-07-28 23:49 UTC (permalink / raw)
  To: Alejandro Colomar (man-pages); +Cc: linux-man

> >> Oops, my bad!  Patch applied.
> >
> > If you don't mind me asking, where has the patch been applied? I don't
> > see it on the kernel.org repo [1].
>
> Sure, I don't yet have a kernel account, so my tree is on github:
> <https://github.com/alejandro-colomar/man-pages>.
>
> I forwarded it right now in a patch set to Michael's tree (the one in
> kernel.org).

Ah, I see now. Thanks for explaining the process!

Cheers,
---Sagar Patel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-07-28 23:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-24  4:58 [PATCH] tkill.2: tfix Sagar Patel
2021-07-25 19:52 ` Alejandro Colomar (man-pages)
2021-07-28 16:20   ` Sagar Patel
2021-07-28 20:22     ` Alejandro Colomar (man-pages)
2021-07-28 23:49       ` Sagar Patel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.