diff mbox

[1/3] remove usage of 'c_plusplus' preprocessor macro

Message ID 1438933078-23480-1-git-send-email-tapani.palli@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Tapani Pälli Aug. 7, 2015, 7:37 a.m. UTC
Use only __cplusplus which is supported by the C++ standard.

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
---
 libkms/libkms.h | 4 ++--
 xf86drm.h       | 4 ++--
 xf86drmMode.h   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

Comments

Thierry Reding Aug. 7, 2015, 12:11 p.m. UTC | #1
On Fri, Aug 07, 2015 at 10:37:56AM +0300, Tapani Pälli wrote:
> Use only __cplusplus which is supported by the C++ standard.
> 
> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> ---
>  libkms/libkms.h | 4 ++--
>  xf86drm.h       | 4 ++--
>  xf86drmMode.h   | 4 ++--
>  3 files changed, 6 insertions(+), 6 deletions(-)

This looks fine to me, I can't find any mention of c_plusplus on the
internet. Let's see what Laurent says, who added this in commit:

	commit 9fa4a4b1a894fa8fffe2075bc3376b7fa5e18104
	Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
	Date:   Thu Nov 1 09:40:30 2012 +0000
	
	    kms: Make libkms.h usable in C++
	
	    Wrap the header in extern "C" { ... };.
	
	    Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
	    Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com>

Oh... looks like Laurent's changes might have been copy/paste from your
earlier commit:

	commit cfee5218b17a2741e5519ed44091171e01f0dbb2
	Author: Tapani Pälli <tapani.palli@intel.com>
	Date:   Fri Sep 23 14:17:42 2011 +0300
	
	    xf86drm.h : wrap C code for C++ compilation/linking
	
	    To enable usage of xf86drm.h from C++ programs/frameworks.
	
	    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
	    [ickle: also wrap xf86drmMode.h]
	    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

Thierry

> diff --git a/libkms/libkms.h b/libkms/libkms.h
> index c00b159..930a2bf 100644
> --- a/libkms/libkms.h
> +++ b/libkms/libkms.h
> @@ -29,7 +29,7 @@
>  #ifndef _LIBKMS_H_
>  #define _LIBKMS_H_
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  extern "C" {
>  #endif
>  
> @@ -75,7 +75,7 @@ int kms_bo_map(struct kms_bo *bo, void **out);
>  int kms_bo_unmap(struct kms_bo *bo);
>  int kms_bo_destroy(struct kms_bo **bo);
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  };
>  #endif
>  
> diff --git a/xf86drm.h b/xf86drm.h
> index e3a19dc..360e04a 100644
> --- a/xf86drm.h
> +++ b/xf86drm.h
> @@ -39,7 +39,7 @@
>  #include <stdint.h>
>  #include <drm.h>
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  extern "C" {
>  #endif
>  
> @@ -759,7 +759,7 @@ extern int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle);
>  extern char *drmGetPrimaryDeviceNameFromFd(int fd);
>  extern char *drmGetRenderDeviceNameFromFd(int fd);
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  }
>  #endif
>  
> diff --git a/xf86drmMode.h b/xf86drmMode.h
> index 1c10023..4de7bbb 100644
> --- a/xf86drmMode.h
> +++ b/xf86drmMode.h
> @@ -36,7 +36,7 @@
>  #ifndef _XF86DRMMODE_H_
>  #define _XF86DRMMODE_H_
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  extern "C" {
>  #endif
>  
> @@ -508,7 +508,7 @@ extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
>  extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
>  
>  
> -#if defined(__cplusplus) || defined(c_plusplus)
> +#if defined(__cplusplus)
>  }
>  #endif
>  
> -- 
> 2.1.0
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
Tapani Pälli Aug. 7, 2015, 12:16 p.m. UTC | #2
On 08/07/2015 03:11 PM, Thierry Reding wrote:
> On Fri, Aug 07, 2015 at 10:37:56AM +0300, Tapani Pälli wrote:
>> Use only __cplusplus which is supported by the C++ standard.
>>
>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>> ---
>>   libkms/libkms.h | 4 ++--
>>   xf86drm.h       | 4 ++--
>>   xf86drmMode.h   | 4 ++--
>>   3 files changed, 6 insertions(+), 6 deletions(-)
>
> This looks fine to me, I can't find any mention of c_plusplus on the
> internet. Let's see what Laurent says, who added this in commit:
>
> 	commit 9fa4a4b1a894fa8fffe2075bc3376b7fa5e18104
> 	Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 	Date:   Thu Nov 1 09:40:30 2012 +0000
> 	
> 	    kms: Make libkms.h usable in C++
> 	
> 	    Wrap the header in extern "C" { ... };.
> 	
> 	    Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 	    Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com>
>
> Oh... looks like Laurent's changes might have been copy/paste from your
> earlier commit:

:) yeah, I'm not the source for this evil though, I recall this addition 
was made during the review!

> 	commit cfee5218b17a2741e5519ed44091171e01f0dbb2
> 	Author: Tapani Pälli <tapani.palli@intel.com>
> 	Date:   Fri Sep 23 14:17:42 2011 +0300
> 	
> 	    xf86drm.h : wrap C code for C++ compilation/linking
> 	
> 	    To enable usage of xf86drm.h from C++ programs/frameworks.
> 	
> 	    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> 	    [ickle: also wrap xf86drmMode.h]
> 	    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>
> Thierry
>
>> diff --git a/libkms/libkms.h b/libkms/libkms.h
>> index c00b159..930a2bf 100644
>> --- a/libkms/libkms.h
>> +++ b/libkms/libkms.h
>> @@ -29,7 +29,7 @@
>>   #ifndef _LIBKMS_H_
>>   #define _LIBKMS_H_
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   extern "C" {
>>   #endif
>>
>> @@ -75,7 +75,7 @@ int kms_bo_map(struct kms_bo *bo, void **out);
>>   int kms_bo_unmap(struct kms_bo *bo);
>>   int kms_bo_destroy(struct kms_bo **bo);
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   };
>>   #endif
>>
>> diff --git a/xf86drm.h b/xf86drm.h
>> index e3a19dc..360e04a 100644
>> --- a/xf86drm.h
>> +++ b/xf86drm.h
>> @@ -39,7 +39,7 @@
>>   #include <stdint.h>
>>   #include <drm.h>
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   extern "C" {
>>   #endif
>>
>> @@ -759,7 +759,7 @@ extern int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle);
>>   extern char *drmGetPrimaryDeviceNameFromFd(int fd);
>>   extern char *drmGetRenderDeviceNameFromFd(int fd);
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   }
>>   #endif
>>
>> diff --git a/xf86drmMode.h b/xf86drmMode.h
>> index 1c10023..4de7bbb 100644
>> --- a/xf86drmMode.h
>> +++ b/xf86drmMode.h
>> @@ -36,7 +36,7 @@
>>   #ifndef _XF86DRMMODE_H_
>>   #define _XF86DRMMODE_H_
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   extern "C" {
>>   #endif
>>
>> @@ -508,7 +508,7 @@ extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
>>   extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
>>
>>
>> -#if defined(__cplusplus) || defined(c_plusplus)
>> +#if defined(__cplusplus)
>>   }
>>   #endif
>>
>> --
>> 2.1.0
>>
>> _______________________________________________
>> dri-devel mailing list
>> dri-devel@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/dri-devel
Thierry Reding Aug. 7, 2015, 12:38 p.m. UTC | #3
On Fri, Aug 07, 2015 at 03:16:10PM +0300, Tapani Pälli wrote:
> 
> 
> On 08/07/2015 03:11 PM, Thierry Reding wrote:
> >On Fri, Aug 07, 2015 at 10:37:56AM +0300, Tapani Pälli wrote:
> >>Use only __cplusplus which is supported by the C++ standard.
> >>
> >>Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> >>---
> >>  libkms/libkms.h | 4 ++--
> >>  xf86drm.h       | 4 ++--
> >>  xf86drmMode.h   | 4 ++--
> >>  3 files changed, 6 insertions(+), 6 deletions(-)
> >
> >This looks fine to me, I can't find any mention of c_plusplus on the
> >internet. Let's see what Laurent says, who added this in commit:
> >
> >	commit 9fa4a4b1a894fa8fffe2075bc3376b7fa5e18104
> >	Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >	Date:   Thu Nov 1 09:40:30 2012 +0000
> >	
> >	    kms: Make libkms.h usable in C++
> >	
> >	    Wrap the header in extern "C" { ... };.
> >	
> >	    Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >	    Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com>
> >
> >Oh... looks like Laurent's changes might have been copy/paste from your
> >earlier commit:
> 
> :) yeah, I'm not the source for this evil though, I recall this addition was
> made during the review!

Indeed, looks like your original post:

	http://lists.freedesktop.org/archives/dri-devel/2011-September/014552.html

didn't have it. Since Chris amended the commit, perhaps he had a reason
to add it. Chris?

Thierry

> >	commit cfee5218b17a2741e5519ed44091171e01f0dbb2
> >	Author: Tapani Pälli <tapani.palli@intel.com>
> >	Date:   Fri Sep 23 14:17:42 2011 +0300
> >	
> >	    xf86drm.h : wrap C code for C++ compilation/linking
> >	
> >	    To enable usage of xf86drm.h from C++ programs/frameworks.
> >	
> >	    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> >	    [ickle: also wrap xf86drmMode.h]
> >	    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> >
> >Thierry
> >
> >>diff --git a/libkms/libkms.h b/libkms/libkms.h
> >>index c00b159..930a2bf 100644
> >>--- a/libkms/libkms.h
> >>+++ b/libkms/libkms.h
> >>@@ -29,7 +29,7 @@
> >>  #ifndef _LIBKMS_H_
> >>  #define _LIBKMS_H_
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  extern "C" {
> >>  #endif
> >>
> >>@@ -75,7 +75,7 @@ int kms_bo_map(struct kms_bo *bo, void **out);
> >>  int kms_bo_unmap(struct kms_bo *bo);
> >>  int kms_bo_destroy(struct kms_bo **bo);
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  };
> >>  #endif
> >>
> >>diff --git a/xf86drm.h b/xf86drm.h
> >>index e3a19dc..360e04a 100644
> >>--- a/xf86drm.h
> >>+++ b/xf86drm.h
> >>@@ -39,7 +39,7 @@
> >>  #include <stdint.h>
> >>  #include <drm.h>
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  extern "C" {
> >>  #endif
> >>
> >>@@ -759,7 +759,7 @@ extern int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle);
> >>  extern char *drmGetPrimaryDeviceNameFromFd(int fd);
> >>  extern char *drmGetRenderDeviceNameFromFd(int fd);
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  }
> >>  #endif
> >>
> >>diff --git a/xf86drmMode.h b/xf86drmMode.h
> >>index 1c10023..4de7bbb 100644
> >>--- a/xf86drmMode.h
> >>+++ b/xf86drmMode.h
> >>@@ -36,7 +36,7 @@
> >>  #ifndef _XF86DRMMODE_H_
> >>  #define _XF86DRMMODE_H_
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  extern "C" {
> >>  #endif
> >>
> >>@@ -508,7 +508,7 @@ extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
> >>  extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
> >>
> >>
> >>-#if defined(__cplusplus) || defined(c_plusplus)
> >>+#if defined(__cplusplus)
> >>  }
> >>  #endif
> >>
> >>--
> >>2.1.0
> >>
> >>_______________________________________________
> >>dri-devel mailing list
> >>dri-devel@lists.freedesktop.org
> >>http://lists.freedesktop.org/mailman/listinfo/dri-devel
Chris Wilson Aug. 7, 2015, 1:30 p.m. UTC | #4
On Fri, Aug 07, 2015 at 02:38:49PM +0200, Thierry Reding wrote:
> On Fri, Aug 07, 2015 at 03:16:10PM +0300, Tapani Pälli wrote:
> > 
> > 
> > On 08/07/2015 03:11 PM, Thierry Reding wrote:
> > >On Fri, Aug 07, 2015 at 10:37:56AM +0300, Tapani Pälli wrote:
> > >>Use only __cplusplus which is supported by the C++ standard.
> > >>
> > >>Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> > >>---
> > >>  libkms/libkms.h | 4 ++--
> > >>  xf86drm.h       | 4 ++--
> > >>  xf86drmMode.h   | 4 ++--
> > >>  3 files changed, 6 insertions(+), 6 deletions(-)
> > >
> > >This looks fine to me, I can't find any mention of c_plusplus on the
> > >internet. Let's see what Laurent says, who added this in commit:
> > >
> > >	commit 9fa4a4b1a894fa8fffe2075bc3376b7fa5e18104
> > >	Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > >	Date:   Thu Nov 1 09:40:30 2012 +0000
> > >	
> > >	    kms: Make libkms.h usable in C++
> > >	
> > >	    Wrap the header in extern "C" { ... };.
> > >	
> > >	    Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > >	    Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com>
> > >
> > >Oh... looks like Laurent's changes might have been copy/paste from your
> > >earlier commit:
> > 
> > :) yeah, I'm not the source for this evil though, I recall this addition was
> > made during the review!
> 
> Indeed, looks like your original post:
> 
> 	http://lists.freedesktop.org/archives/dri-devel/2011-September/014552.html
> 
> didn't have it. Since Chris amended the commit, perhaps he had a reason
> to add it. Chris?

Just cargo-culting.
-Chris
Emil Velikov Aug. 7, 2015, 3:03 p.m. UTC | #5
On 7 August 2015 at 13:11, Thierry Reding <thierry.reding@gmail.com> wrote:
> On Fri, Aug 07, 2015 at 10:37:56AM +0300, Tapani Pälli wrote:
>> Use only __cplusplus which is supported by the C++ standard.
>>
>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>> ---
>>  libkms/libkms.h | 4 ++--
>>  xf86drm.h       | 4 ++--
>>  xf86drmMode.h   | 4 ++--
>>  3 files changed, 6 insertions(+), 6 deletions(-)
>
> This looks fine to me, I can't find any mention of c_plusplus on the
> internet. Let's see what Laurent says, who added this in commit:
>
The only reference I could find was in Oracle's documentation, which
says that it was used in ancient versions of the C++ standard [1]. On
the question of why I believe you've answered is perfectly -
copy'n'paste FTW ;-)

Cheers,
Emil

[1] http://docs.oracle.com/cd/E19422-01/819-3689/Ch6.Diff.C_C++.html
diff mbox

Patch

diff --git a/libkms/libkms.h b/libkms/libkms.h
index c00b159..930a2bf 100644
--- a/libkms/libkms.h
+++ b/libkms/libkms.h
@@ -29,7 +29,7 @@ 
 #ifndef _LIBKMS_H_
 #define _LIBKMS_H_
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 extern "C" {
 #endif
 
@@ -75,7 +75,7 @@  int kms_bo_map(struct kms_bo *bo, void **out);
 int kms_bo_unmap(struct kms_bo *bo);
 int kms_bo_destroy(struct kms_bo **bo);
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 };
 #endif
 
diff --git a/xf86drm.h b/xf86drm.h
index e3a19dc..360e04a 100644
--- a/xf86drm.h
+++ b/xf86drm.h
@@ -39,7 +39,7 @@ 
 #include <stdint.h>
 #include <drm.h>
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 extern "C" {
 #endif
 
@@ -759,7 +759,7 @@  extern int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle);
 extern char *drmGetPrimaryDeviceNameFromFd(int fd);
 extern char *drmGetRenderDeviceNameFromFd(int fd);
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 }
 #endif
 
diff --git a/xf86drmMode.h b/xf86drmMode.h
index 1c10023..4de7bbb 100644
--- a/xf86drmMode.h
+++ b/xf86drmMode.h
@@ -36,7 +36,7 @@ 
 #ifndef _XF86DRMMODE_H_
 #define _XF86DRMMODE_H_
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 extern "C" {
 #endif
 
@@ -508,7 +508,7 @@  extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
 extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
 
 
-#if defined(__cplusplus) || defined(c_plusplus)
+#if defined(__cplusplus)
 }
 #endif